Introduction to The One ASP.NET Platform/Ecosystem

Introduction ASP.NET has travelled a long way through evolutions. Earlier when ASP.NET 1.0 was released as part of .NET Framework 1.0 in Jan 2002, there was only ASP.NET – a framework for building dynamic web applications and it provided lots of flexibility web developers in building robust, dynamic web applications.  ASP.NET was and is the […]

Read more →

Sorting a List in ASC/DESC order using LINQ

Most of the developers are unaware of the capabilities of .NET 3.5 and above. Still going for old way of sorting calling List.Sort and implementing a delegate or lambda expression to specify the sort expression.  But the slight problem is what you will do for “ASCENDING”  and “DESCENDING” order sorting. You have to specify the […]

Read more →

Use LoadDataOptions class in LINQ for immediate filtering and loading of relational data

LINQ is one of the nice feature every .NET developer would love to appreciate Microsoft for. I do not wish to explain much about linq, I am getting in to topic with a belief that you will have minimum understanding of LINQ and how it helps in data access from .NET Framework 3.5 onwards. Consider […]

Read more →