如何使用 c# 2.0 驱动程序将数据插入 mongodb 集合?

How to insert data into a mongodb collection using the c# 2.0 driver?

  1. 我在我的 C# 控制台应用程序中使用 MongoClient 连接到 MongoDB

https://github.com/mongodb/mongo-csharp-driver/releases/tag/v2.0.0-rc0

  1. 我的代码

      class Program
       {
           static void Main(string[] args)
           {
            const string connectionString = "mongodb://localhost:27017";
    
            // Create a MongoClient object by using the connection string
            var client = new MongoClient(connectionString);
    
            //Use the MongoClient to access the server
            var database = client.GetDatabase("test");
    
            var collection = database.GetCollection<Entity>("entities");
    
            var entity = new Entity { Name = "Tom" };
            collection.InsertOneAsync(entity);
            var id = entity._id;          
        }
    }
    
    public class Entity
    {
        public ObjectId _id { get; set; }
        public string Name { get; set; }
    }
    
  2. 成功 运行 上述代码后,我无法使用此命令在 MongoDB 数据库中找到此记录:

    db.entities.find().pretty()
    

我的代码有什么问题?

这是我创建的用于将数据插入 MongoDB 的方法,现在工作正常。

static async void DoSomethingAsync()
{
    const string connectionString = "mongodb://localhost:27017";

    // Create a MongoClient object by using the connection string
    var client = new MongoClient(connectionString);

    //Use the MongoClient to access the server
    var database = client.GetDatabase("test");

    //get mongodb collection
    var collection = database.GetCollection<Entity>("entities");
    await collection.InsertOneAsync(new Entity { Name = "Jack" });
}

对于 .net 4.5 及更高版本和 mongodriver 2x 系列,请遵循以下代码

var Client = new MongoClient();
var MongoDB = Client.GetDatabase("shop");
var Collec = MongoDB.GetCollection<BsonDocument>("computers");
var documnt = new BsonDocument
{
    {"Brand","Dell"},
    {"Price","400"},
    {"Ram","8GB"},
    {"HardDisk","1TB"},
    {"Screen","16inch"}
};
Collec.InsertOneAsync(documnt);
Console.ReadLine();

原因是您需要等待商店创建文档。在这种情况下 collection.InsertOneAsync(entity);创建文档前执行退出。

Console.ReadKey() 或 collection.InsertOneAsync(entiry).Wait() 或任何其他形式的停止退出几分之一秒都可以解决问题。