What do you understand by LINQ?

devquora
devquora

Posted On: Feb 22, 2018

 

Language Integrated Query (LINQ) is the collection of standard query operators that adds query facilities into .NET framework languages like C#, VB.NET, etc. LINQ also represents the set of method names with the translation rules that can be used by the compiler for converting fluent-style query expressions into expressions that uses these method names, anonymous types and lambda expressions. LINQ can be used to extract data from arrays, XML documents, relational databases and other third-party data sources.
The LINQ is of the following types:

  • LINQ to objects refers to the use of LINQ queries without the use of an intermediate LINQ provider such as LINQ to SQL. 
  • LINQ to XML which was formerly known as XLINQ
  • LINQ to SQL which was formerly known as DLINQ
  • LINQ to Datasets
  • LINQ to Entities

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    LINQ Interview Questions

    What are the three main components of LINQ?

    The three main components of LINQ are:Standard Query Operators: These are the extension methods that form the LINQ p..

    LINQ Interview Questions

    Explain what is select clause and where clause in LINQ?

    Select clause: the select clause selects the interesting aspects of the element by performing a projection on the col..

    LINQ Interview Questions

    How is LINQ useful than Stored Procedures?

    LINQ is useful than stored procedures in the following ways:Deployment: In LINQ, deployment becomes easier as everyth..