MongoDB and C# Find()(MongoDB 和 C# Find())
问题描述
我有以下代码,我是 mongodb 的新手,我需要帮助来查找集合中的特定元素.
I have the below code and I am new to mongodb, I need help in finding an specific element in the collection.
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
         */
  }
}
}
一旦我找到我想要打印的用户,这是可能的还是只会找到返回位置?如果是这样,我该如何打印?
Once I find the user I will like to print it, is that posible or will find only return the position? if so, how do I print it?
我看过一些示例 collection.Find(x => x.something) 但我不知道 x 是什么或意味着什么
I have seen some examples collection.Find(x => x.something) but I do not know what that x is or mean
推荐答案
要查找记录,您可以在 find 中使用 Lambda,例如:
To find a record you could use Lambda in find, for example:
var results = collection.Find(x => x.name == "system").ToList();
或者,您可以使用支持强类型 Lambda 或文本的构建器:
Alternatively you can use Builders which work with strongly typed Lambda or text:
var filter = Builders<User>.Filter.Eq(x => x.name, "system")
或
var filter = Builders<User>.Filter.Eq("name", "system")
然后像上面一样使用find
And then use find as above
// 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();
                        这篇关于MongoDB 和 C# Find()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MongoDB 和 C# Find()
				
        
 
            
        - 使用 rss + c# 2022-01-01
 - 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
 - Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
 - C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
 - CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
 - Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
 - 带问号的 nvarchar 列结果 2022-01-01
 - 在 C# 中异步处理项目队列 2022-01-01
 - 在 LINQ to SQL 中使用 contains() 2022-01-01
 - 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
 
						
						
						
						
						