Before you start working with MongoDB using C Sharp, I recommend you to read MongoDB on Windows quick start in 5 minute and download MongoDB for CSharp from here
Start MongoDB server
If you would have gone through MongoDB on Windows quick start in 5 minute then you know how to start MongoDB server. However just for quick recap you need to start MongoDB server as below,
You can connect to MongoDB server as below by executing mongod exe
By default MongoDB stores data inside data folder of C Drive. You need to explicitly create this folder as well.
Add required library in solution
You will get a solution when you download MongoDB for CSharp from here . Open the solution in Visual Studio and build it.
Take MongoDB.dll and add this reference to your project.
Create Project and perform operations
For purpose of this blog post, I am going to create a console application. I have added MongoDB.dll as reference in console application project.
Create DataBase
If you want to create a database, you can create as below,
Above code will connect to MongoDB and create a database called Bloggers, if it does not exist.
Add Record in DataBase
You can add record as below,
Where blogger is collection you get over database as below,
Delete Record from DataBase
You can delete a record by just providing one key value as well like below,
Fetch a Record
To fetch a particular document or record you need to create document and provide key value as below.
FindOne() function returns a document . You need to call Get function with key value as input to fetch the value.
For your reference full source code is as below,
using System; using System.Collections.Generic; using System.Linq; using System.Text; using MongoDB; namespace ConsoleApplication34 { class Program { static void Main(string[] args) { //Create Database Mongo mongoDBdataBase = new Mongo(); mongoDBdataBase.Connect(); var dataBaseToWork = mongoDBdataBase.GetDatabase("Bloggers"); //Create Collection var blogger = dataBaseToWork.GetCollection("blogger"); //Insert Records var b = new Document(); b["Name"] = "Dhananjay"; b["Country"] = "India"; blogger.Insert(b); b["Name"] = "G Block"; b["Country"] = "USA"; blogger.Insert(b); //Fetch Record var searchBlogger = new Document(); searchBlogger["Name"] = "Dhananjay"; var result = blogger.FindOne(searchBlogger); Console.WriteLine(result.Get("Country").ToString()); Console.ReadKey(true); } } }
In this way you can perform operations on MongoDB using CSharp. I hope this post is useful. Thanks for reading.
Follow @debug_mode
Leave a Reply