Question:

What is Linq ?

by Guest5371  |  12 years, 7 month(s) ago

0 LIKES UnLike

I Think its a new way of accessing Databases in your programming

 Tags: ?, Linq

   Report

1 ANSWERS

  1. Leonardo
    Microsoft LINQ defines a set of query operators that can be used to query, project and filter data in arrays, enumerable classes, XML, relational database, and third party data sources. While it allows any data source to be queried, it requires that the data be encapsulated as objects. So, if the data source does not natively store data as objects, the data must be mapped to the object domain. Queries written using the query operators are executed either by the LINQ query processing engine or, via an extension mechanism, handed over to LINQ providers which either implement a separate query processing engine or translate to a different format to be executed on a separate data store (such as on a database server as SQL queries). The results of a query are returned as a collection of in-memory objects that can be enumerated using a standard iterator function such as C#'s foreach.

    [http://en.wikipedia.org/wiki/Language_Integrated_Query]

Sign In or Sign Up now to answser this question!
You're reading: What is Linq ?

Question Stats

Latest activity: 15 years, 3 month(s) ago.
This question has 1 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.