What is the benefit of using LINQ on Dataset?

 Posted by Tripati_tutu on 1/28/2011 | Category: LINQ Interview questions | Views: 10546 | Points: 40
Answer:

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.


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response