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 have gone through MongoDB on Windows quick start in 5 minute then you know how to start a MongoDB server. However just for a 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 a data folder of the 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 operationsFor purpose of this article, I am going to create a console application. I have added the MongoDB.dll as a reference in the console application project. Create DataBaseIf you want to create a database, you can create as below:The above code will connect to the MongoDB and create a database called Bloggers, if it does not exist. Add Record in DataBase You can add a record as below:Where blogger is collection you get over database as below:Delete Record from DataBaseYou 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 a document and provide the key value as below:The FindOne() function returns a document . You need to call the Get function with a key value as input to fetch the value. For your reference, the 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 article is useful. Thanks for reading....
You need to be a premium member to use this feature. To access it, you'll have to upgrade your membership.
Become a sharper developer and jumpstart your career.
$0
$
. 00
monthly
For Basic members:
$20
For Premium members:
$45
For Elite members: