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...
by Sandesh | Dec 13, 2010 | .Net
Provide an interface for creating families of related or dependent objects without specifying their concrete classes. The pattern is very similar to the previous pattern. It is one level of abstraction higher than the other. The Abstract Factory is a factory object...
by Sandesh | Nov 13, 2010 | .Net
It is a creational pattern that uses a special type of object to create other objects. Factory methods encapsulate the creation of objects. This can be useful if the creation process is very complex, for example if it depends on settings in configuration files or on...
by Sandesh | Jul 9, 2010 | .Net
I’m really excited about ScottGu’s announcement on SQL CE 4 development and free standalone database engine. It is really interesting Microsoft move on standalone database engine with SQL CE 4. As per blog it is embedded database, support shared web hosting, mainly...
by Sandesh | Jul 7, 2010 | .Net, Sharepoint
Using aspx dynamic page compression you can increase the page download time and user experience as well. As we know SharePoint serve the page dynamically, hence need to activate the dynamic page compression feature on IIS6 in order to get the good performance boost....