I'm currently looking to use MongoDB in a C# project and I'm interested in using the official C# Driver. The official 'tutorial' is more a reference than a tutorial (see http://www.mongodb.org/display/DOCS/CSharp+Driver+Tutorial).

Has anyone come across any good tutorials? I've only found one so far: http://evolpin.wordpress.com/2011/08/08/first-attempt-at-nosql-c-and-mongodb/

link|improve this question

64% accept rate
Would you be interested general MongoDB tutorial that IME translates fairly directly to C#. In that I'd recommend "The Little MongoDB Book". – Christian Horsdal Sep 1 '11 at 19:04
2  
When reading the main tutorial, you might want to skip over the firsts parts ("The BSON Library"). The meat of what you're after is at "The C# Driver" (mongodb.org/display/DOCS/…). – Mark Hildreth Sep 1 '11 at 21:59
2  
I found the CSharp Driver Tutorial to give enough information to get started. From there it's just a matter of looking into specific problems you're encountering. – Timothy Strimple Sep 2 '11 at 8:07
Thanks for the replies, I guess I was more looking for some real world exmaples such as developing an MVC app, that would cover best practices like using Repository Patten, DI, etc. – Click Ahead Sep 2 '11 at 17:40
feedback

4 Answers

http://joedoyle.us/getting-started-with-mongodb-and-the-10gen-c

This would help you. First learn basic, once you become strong in basics, then you can achieve a lot in mongodb.

link|improve this answer
feedback

Something like this perhaps? It has a sample project to download and pretty clear directions to get you started. From there the 'official' tutorial may be more useful.

http://www.codeproject.com/KB/database/MongoDBCS.aspx

link|improve this answer
feedback

I used the little mongodb book and went from there. I agree the docs are pretty poor so another very useful resource is downloading the driver, the unit test in particular can be helpful understanding how to use it.

tbh most of the issues aren't around the C# driver, but actually understanding mongo itself. Particularly doing clever things like inplace updates of date etc (e.g. adding an item to a collection).

link|improve this answer
feedback

Here is the tutorial to learn basics, this contains right from Building the sample program

[http://api.mongodb.org/c/0.4/tutorial.html]

ALL THE BEST.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.