LINQ Queries(Part 1):

Vishwas Bhat - Aug 19 - - Dev Community

What is LINQ?

  • LINQ is a uniform query language, introduced with .NET 3.5 that we can use to retrieve data from different data sources. These data sources include the collection of objects, relational databases, ADO.NET datasets, XML files, etc.

What are the different steps of a LINQ query operation??

- There Are Few Steps Are There Those are

1.Obtain the data source
2.Create the query
3.Execute the query

Explanation Of these Steps will discuss in next part Thank you.

. . .