Setting up the mongodb dependencies
"dependencies": {
"Microsoft.AspNet.Server.IIS":"1.0.0-beta1",
"Microsoft.AspNet.Mvc": "6.0.0-beta1",
"Microsoft.AspNet.Hosting": "1.0.0-beta1",
"Microsoft.AspNet.Diagnostics": "1.0.0-beta1",
"Microsoft.AspNet.Server.WebListener": "1.0.0-beta1",
"Microsoft.Framework.ConfigurationModel.Json": "1.0.0-beta1",
"Kestrel": "1.0.0-beta1",
"mongocsharpdriver": "1.8.3" //MongoDB Driver
}
Now create the “config.json” file
{
"mongoconnection": "mongodb://localhost:27017",
"database": "mongo-mvc6-db"
}
Now create an instance of the “MongoClient”
private MongoDatabase
Connect()
{
var myclient = new MongoClient("mongodb://localhost");
var myserver =
myclient.GetServer();
var database =
myserver.GetDatabase("mongo-mvc6-db");
return database;
}
For more detail, go to link