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...
by Sandesh | Mar 12, 2011 | .Net, Technology
Testable application should be developed in a loosely coupled manner so that you can test the independent parts of the application. Asp.net MVC support this feature so i suggest you can use this framework if you want to use TDD. Here are a few techniques that you can...
by Sandesh | Mar 9, 2011 | .Net, SQL
As you aware of Entity Framework 4 feature translates LINQ queries to SQL to execute in the backend. However, what Entity Framework may render a SQL query that looks much different. Entity Framework’s SQL query building process may involve the use of sub...