|
|
-
|
|
There always be case where one procedure returns more then one result set. Getting those data in DataSet is lazy way of coding, best way to do that is using DataReader. DataReader having method call NextResult which allows us to read next result set if any. First we will see how we were doing this i......
|
|
-
|
|
In Object Oriented world Sealed class is class which can not inherited, its sealed not more implementation get added. This was correct before C#3.0 invented. C#3.0 Comes with lots of new functionality like Extension Methods, Anonymous Types, Partial Methods, Automatic Properties and Object-Collectio......
|
|
-
|
|
LINQ [Language Integrated Query], it’s a programming model for any kind of data. It’s enable you to query data irrespective of data source hence its another data abstraction layer.
Following post will cover some topics which will be helpful to understand
What is LINQ What is LINQ to SQL ......
|
|