gpt4 book ai didi

c# - MongoDB 和 C# Find()

转载 作者:IT老高 更新时间:2023-10-28 13:23:54 25 4
gpt4 key购买 nike

我有以下代码,而且我是 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
*/
}
}
}

一旦我找到想要打印的用户,这是否可行或只会返回该位置?如果是这样,我该如何打印?

我看过一些示例 collection.Find(x => x.something) 但我不知道 x 是什么意思

最佳答案

要查找记录,您可以在 find 中使用 Lambda,例如:

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

或者,您可以使用处理强类型 Lambda 或文本的构建器:

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

或者

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

然后像上面那样使用find

// 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();

关于c# - MongoDB 和 C# Find(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40164908/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com