Posts Tagged MVC
Video | Validation in ASP.NET MVC using IDataerrorinfo
Posted by Kinnar Shah in .NET, ASP.NET MVC, Technology on January 25, 2010
IoC and Dependency Injection With “Unity Application Blocks”
Posted by Kinnar Shah in .NET, ASP.NET MVC, Technology on January 15, 2010
Modern business applications consist of custom business objects and components that perform specific tasks or generic tasks within the application, in addition to components that individually address crosscutting concerns such as logging, authentication, authorization, caching, and exception handling.
The key to successfully building these types of applications is to achieve a decoupled or very loosely coupled design. Loosely coupled applications are more flexible and easier to maintain. They are also easier to test during development. You can mock up shims (lightweight mock implementations) of objects that have strong concrete dependencies, such as database connections, network connections, enterprise resource planning (ERP) connections, and rich user interface components.
Dependency injection is a prime technique for building loosely coupled applications. It provides ways to handle the dependencies between objects. For example, an object that processes customer information may depend on other objects that access the data store, validate the information, and check that the user is authorized to perform updates. Dependency injection techniques can ensure that the customer class correctly instantiates and populates all these objects, especially where the dependencies may be abstract.
Read More At MSDN
Visual Studio 2010b2 and .NET Framework 4b2 Training Kit announced
Posted by Kinnar Shah in .NET, Technology on October 21, 2009
In sync with the release of VS2010b2 and .NET4b2, Microsoft has announced the release of it’s latest training kit.
The kit covers a wide range of topics including but not limited to: Read the rest of this entry »
