MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Comment insérer des données dans une collection mongodb à l'aide du pilote c# 2.0 ?

C'est la méthode que j'ai créée pour insérer des données dans MongoDB, qui fonctionne bien maintenant.

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" });
}