I have already written a few blog post about EF Code first and it’s features following is a complete list of blog posts.
Entity framework code first and inheritance- Table Per Type
Entity Framework code first and Inheritance–Table per hierarchy
Entity Framework Code First migrations
Different way of mapping with EFCodeFirst
Different way of creating keys in EFCodeFirst
This post will also be part...
Tuesday, September 16, 2014
Thursday, September 11, 2014
Dependency Injection with ASP.NET MVC and Simple Injector

CodeProject
I have been learning SimpleInjector for few days and it’s just awesome. I have already written two post about it(see below link) and this post will be third post about it. In this post we are going to learn how we can do Dependency Injection with ASP.NET MVC.
For those who are reading...
Tuesday, September 9, 2014
Singleton Instance in SimpleInjector
Before some time I have written a blog post Dependency Injector with Simple Injector. This is a second blog post in same series. In this blog post we are going to learn How we can create a singleton Instance in Simple Injector.
What is is Singleton:
This is one of the Gang of Four creational pattern. Idea of behind the singleton pattern is to have only one instance of class of at anytime. This...