by Sandesh | Mar 21, 2011 | .Net
What is entity framwork POCO? POCO stands for “Plain Old CLR Object”. This is also called code first developement. This is one of the .net 4 new feature. Here scottGu explained in detailed POCO Model implementation in his blog.
by Sandesh | Mar 18, 2011 | .Net
by Sandesh | Mar 13, 2011 | .Net
The Dependency Injection Pattern is a popular design technique that can be used to implement loosely coupled, reusable, and testable objects in your software designs by reducing the cohesion amongst the components in your application. You can implement dependency...
by Sandesh | Mar 13, 2011 | .Net
Data access is a popular subject among developers. No doubt you’ve heard plenty of opinions on specific data access technologies and persistence frameworks. Here i have explained Unit of work pattern and how to use it in .net application and advantages. The Unit...
by Sandesh | Mar 12, 2011 | .Net
As you aware repository pattern will comes under creational patterns, Repository pattern can be used for achieving the abstraction between data access layer and business layer. In this article you can learn how to implement the Repository pattern in .NET...
by Sandesh | Mar 12, 2011 | .Net
Advantage of this pattern of separation is the functional development provided by MVC as well as using the advantages of XAML by binding data while using it. ViewModel, and any Business Layer’s inherent data checking features to validate any incoming data. The result...