Category: All

Design Patterns – ‘Abstract Factory’

Posted on 3 min read

Provide an interface for creating families of related or dependent objects without specifying their concrete classes.  An AbstractFactory is a class that exists to create instances of another class. Described on page 87 of the DesignPatternsBook. Typically, if you want to construct instances of a class, where the class is selected at run time, you…… Continue reading

ASP.NET MVC 2 – Areas Support

Posted on 7 min read

ASP.NET MVC 2 introduces the concept of Areas. Areas provide a means of dividing a large web application into multiple projects, each of which can be developed in relative isolation. The goal of this feature is to help manage complexity when developing a large site by factoring the site into multiple projects, which get combined… Continue reading

ASP.NET MVC 2

Posted on 2 min read

ASP.NET MVC 2 is the next significant update of ASP.NET MVC. It is a compatible update to ASP.NET MVC 1 – so all the knowledge, skills, code, and extensions you already have with ASP.NET MVC continue to work and apply going forward. Like the ASP.NET MVC 1.0 , Microsoft also shipping the source code for… Continue reading

Design Patterns in .NET

Posted on 4 min read

Introduction Design patterns are recurring solutions to software design problems you find again and again in real-world application development. Patterns are about design and interaction of objects, as well as providing a communication platform concerning elegant, reusable solutions to commonly encountered programming challenges There are so many design patterns available for Software application development, depending… Continue reading

Visual Studio Gallery

Posted on 1 min read

  Products and Extensions for Visual Studio I think some of us might have heard about Visual Studio Gallery, where microsoft show cases their own AddIns/Plugins for Microsoft Visual Studio. This includes all 3rd party extensions and addin’s too. I was searching for plugins or extension for using Team Foundation Server 2010 with Visual Studio… Continue reading

SqlBulkCopy in ADO.NET 2.0

Posted on 5 min read

SqlBulkCopy is a new feature in ADO.NET 2.0 and above, that lets you to perform copy operation for a large amount of data between a source data store and a destination data table. Copying a large amount of data from a source data store to a destination table in SQL database by using a traditional… Continue reading

Showing 441-450 of 545 posts
per page