Mongo DB ist eine “Open Source” dokumentenorientierte Datenbank (document oriented database). Das weit verbreiteste DBMS mit einer dokumentenorientierten Datenbank heisst Lotus Notes
Einige Links zu MongoDB
|
Offizielle Website |
|
|
MongoDB Wiki |
|
|
MongoDB for CSharp |
|
|
MongoDB for CSharp II |
http://odetocode.com/Blogs/scott/archive/2009/10/13/experimenting-with-mongodb-from-c.aspx |
|
YouTube Video |
|
|
Linq2MongoDB |
http://www.claassen.net/geek/blog/2009/09/linq2mongodb-building-linq-provider-for.html |
|
MongoDB im Dauerstress |
http://blogs.msdn.com/dparys/archive/2010/03/12/mongodb-im-stress-test.aspx |
|
CouchDB vs. MongoDB Benchmark |
http://www.snailinaturtleneck.com/blog/2009/06/29/couchdb-vs-mongodb-benchmark/ |
|
Using MongoDB with Visual Studio |
http://somewebguy.wordpress.com/2010/02/09/using-mongodb-with-visual-studio/ |
|
(Video) Understanding ObjectId in MongoDb Database Using C# Driver |
|
|
(Video) Saving Nested Documents in MongoDb Database Using C# Driver |
Simple Query
using MongoDB.Driver; Mongo db = new Mongo(); db.Connect(); Document query = new Document(); query["field1"] = 10; Document result = db["tests"]["reads"].FindOne(query); db.Disconnect();







