Sunday, February 28, 2016

Mongo DB With C# API V2

Let's start and check the latest  MongoDb Driver for C# (Mongo V2). If you are not still configured your Mongo Server yet. see this Post If you need some guide on old MongoDb Driver V1. See this Post New Features In V2  Async Support  Method Naming convention with helpful names ( SelectOne, InsertOne etc)  Legacy API Support  Here is the Db Structure and Sample Data I'm going to Use   DB Structure : Create...

Tuesday, February 23, 2016

Dependancy Injection With Unity

In Last post I gave you introduction for dependency  Injection. Here we gonna Use it in real code First I create MVC project and Add following classes to it. public interface IUserService    {        string GetUserName(string name);    }   public class UserService : IUserService     {         public string GetUserName(string name)         {             return string.Format("Hello {0}", name);         }     }    Here...