MongoDB C# Driver
You can get the latest stable release from the official Nuget.org feed or from our github releases page.
If you'd like to work with the bleeding edge, you can use our custom feed. Some packages on this feed are pre-release and, while they've passed all our tests, are not yet ready for production.
Getting Started
Untyped Documents
using MongoDB.Bson;
using MongoDB.Driver;
var client = new MongoClient("mongodb://localhost:27017");
var database = client.GetDatabase("foo");
var collection = database.GetCollection<BsonDocument>("bar");
await collection.InsertOneAsync(new BsonDocument("Name", "Jack"));
var list = await collection.Find(new BsonDocument("Name", "Jack"))
.ToListAsync();
foreach(var document in list)
{
Console.WriteLine(document["Name"]);
}
Typed Documents
using MongoDB.Bson;
using MongoDB.Driver;
public class Person
{
public ObjectId Id { get; set; }
public string Name { get; set; }
}
var client = new MongoClient("mongodb://localhost:27017");
var database = client.GetDatabase("foo");
var collection = database.GetCollection<Person>("bar");
await collection.InsertOneAsync(new Person { Name = "Jack" });
var list = await collection.Find(x => x.Name == "Jack")
.ToListAsync();
foreach(var person in list)
{
Console.WriteLine(person.Name);
}
Documentation
Questions/Bug Reports
If you’ve identified a security vulnerability in a driver or any other MongoDB project, please report it according to the instructions here.
Contributing
Please see our guidelines for contributing to the driver.
Maintainers:
- Robert Stam robert@mongodb.com
- Craig Wilson craig.wilson@mongodb.com
Contributors (in alphabetical order):
- Bit Diffusion Limited code@bitdiff.com
- Alex Brown https://github.com/alexjamesbrown
- Justin Dearing zippy1981@gmail.com
- Dan DeBilt dan.debilt@gmail.com
- Teun Duynstee teun@duynstee.com
- Einar Egilsson https://github.com/einaregilsson
- Ken Egozi mail@kenegozi.com
- Daniel Goldman daniel@stackwave.com
- Simon Green simon@captaincodeman.com
- Nik Kolev nkolev@gmail.com
- Oleg Kosmakov kosmakoff@gmail.com
- Brian Knight brianknight10@gmail.com
- Richard Kreuter richard@10gen.com
- Kevin Lewis kevin.l.lewis@gmail.com
- Dow Liu redforks@gmail.com
- Alex Lyman mail.alex.lyman@gmail.com
- Alexander Nagy optimiz3@gmail.com
- Sridhar Nanjundeswaran https://github.com/sridharn
- Andrew Rondeau github@andrewrondeau.com
- Ed Rooth edward.rooth@wallstreetjapan.com
- Pete Smith roysvork@gmail.com
- staywellandy https://github.com/staywellandy
- Testo test1@doramail.com
- Bar Arnon https://github.com/I3arnon
- Rich Quackenbush rich.quackenbush@captiveaire.com
- James Hadwen james.hadwen@sociustec.com
- Jacob Jewell jacobjewell@eflexsystems.com
If you have contributed and we have neglected to add you to this list please contact one of the maintainers to be added to the list (with apologies).