Categorize LINQ Standard Query Operators based on functionality.

devquora
devquora

Posted On: Feb 22, 2018

 

LINQ operators can be categorized based on functionality in following ways-

  • Filtering operators- it is used to restricting the result set in a way that it has only selected elements that satisfy a condition.
  • Join operators- it is an operation where data sources with difficult to follow relationship with each other are targeted. 
  • Sorting operators- it sorts the elements of a sequence on some attributes.
  • Conversions- it is an operator that changes the type of input objects, and they are also used in various applications.
  • Aggregations- it helps to perform any type of aggregation and also creates custom aggregations.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    LINQ Interview Questions

    What do you understand by LINQ?

    Language Integrated Query is the collection of standard query operators which adds query facilities into .NET framework..

    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..