web-dev-qa-db-ja.com

MongoDBおよびC#Find()

私は以下のコードを持っていますが、mongodbは初めてです。コレクション内の特定の要素を見つけるのに助けが必要です。

using MongoDB.Bson;
using MongoDB.Driver;
namespace mongo_console    {

public class User    {
    public ObjectId Id { get; set; }
    public string name { get; set; }
    public string pwd { get; set; }
}
class Program    {
    static void Main(string[] args)
    {
        MongoClient client = new MongoClient();
        MongoServer server = client.GetServer();
        MongoDatabase db = server.GetDatabase("Users");
        MongoCollection<User> collection = db.GetCollection<User>("users");

        User user = new User
        {
            Id = ObjectId.GenerateNewId(),
            name = "admin",
            pwd = "admin"
        };
        User user2 = new User
        {
            Id = ObjectId.GenerateNewId(),
            name = "system",
            pwd = "system"
        };
        collection.Save(user);
        collection.Save(user2);

        /*
         * How do I collection.Find() for example using the name
         */
  }
}
}

ユーザーを見つけたら、それを印刷したいのですが、それは可能ですか、それとも位置を返すだけですか?もしそうなら、どのようにそれを印刷しますか?

私はいくつかの例のコレクションを見てきました.Find(x => x.something)が、xが何であるかまたは意味するのか分かりません

7
mejia_david

レコードを見つけるには、たとえば次のように検索でLambdaを使用できます。

var results = collection.Find(x => x.name == "system").ToList();

または、強く型付けされたラムダまたはテキストで動作するビルダーを使用できます。

var filter = Builders<User>.Filter.Eq(x => x.name, "system")

または

var filter = Builders<User>.Filter.Eq("name", "system")

そして、上記の検索を使用します

// results will be a collection of your documents matching your filter criteria

// Sync syntax
var results = collection.Find(filter).ToList();

// Async syntax
var results = await collection.Find(filter).ToListAsync();
24
pieperu

また、使用している.Netフレームワークのバージョンによって異なります。 2xドライバーを使用する場合、次のようになります。

var list = await collection.Find(new BsonDocument()).ToListAsync();

方法2

await collection.Find(new BsonDocument()).ForEachAsync(X=>Console.WriteLine(X));

参考例

2
Lawrine
using MongoDB.Bson;
using MongoDB.Bson.Serialization.Attributes;
using MongoDB.Driver;
using MongoDB.Driver.Builders;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Mongo_console
{
    class Program
    {
        public static void Main(string[] args)
        {
            MongoClient client = new MongoClient();
            MongoServer server = client.GetServer();
            MongoDatabase db = server.GetDatabase("admin");
            MongoCollection<Book> collection = db.GetCollection<Book>("Book");


            Book book1 = new Book
            {
                Id = ObjectId.GenerateNewId(),
                name = "Reel To Real"
            };
            Book book2 = new Book
            {
                Id = ObjectId.GenerateNewId(),
                name = "Life"
            };
            collection.Save(book1);
            collection.Save(book2);

            var query = Query<Book>.EQ(u => u.Id, new ObjectId("5a5ee6360222da8ad498f3ff"));
            Book list = collection.FindOne(query);
            Console.WriteLine( "Book Name  " + list.name);


            Console.ReadLine();
        }
    }
    public class Book
    {
        [BsonId]
        public ObjectId Id { get; set; }
        public string name { get; set; }

        public Book()
        {
        }

        public Book(ObjectId id, string name)
        {
            this.Id = id;
            this.name = name;
        }
    }
}
0