Showing posts with label benefit of using LINQ on Dataset. Show all posts
Showing posts with label benefit of using LINQ on Dataset. Show all posts

Thursday 19 January 2012

benefit of using LINQ on Dataset

What is the benefit of using LINQ on Dataset?


The main aim of using LINQ to Dataset is to run strongly typed queries on Dataset.

Suppose we want to combine the results from two Datasets, or we want to take a distinct value from the Dataset, then it is advisable to use LINQ.

Normally you can use the SQL queries to run on the database to populate the Dataset, but you are not able to use SQL query on a Dataset to retrieve a particular values. To get this you need to use ADO.NET functionalities. But, in case of LINQ, it provides more dignified way of querying the Dataset and provides some new features as compared to ADO.NET.