Web- und Software Development

ObservableCollection<MongoDB> myLinks

Written By: Mario Priebe - Mrz• 12•10

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

http://www.mongodb.org

MongoDB Wiki

http://en.wikipedia.org/wiki/MongoDB

MongoDB for CSharp

http://github.com/samus/mongodb-csharp

MongoDB for CSharp II

http://odetocode.com/Blogs/scott/archive/2009/10/13/experimenting-with-mongodb-from-c.aspx

YouTube Video

http://www.youtube.com/watch?v=dOP3w-9Q6lU

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

http://www.mefeedia.com/watch/29109999

(Video) Saving Nested Documents in MongoDb Database Using C# Driver

http://www.mefeedia.com/watch/29110000

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();

Ähnliche Beiträge

  • Keine ähnliche Beiträge vorhanden

You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed.