1.

What is Query and Sequence operators in LINQ?

Answer»

The QUERY is an expression which is used to recover data from a VARIETY of data SOURCES and query can be expressed in specialized languages.

Three types of actions can be performed on LINQ query namely
  • Get data source
  • Create Query
  • Execution of Query
LINQ does not support SEQUENCE operators but it is having the following qualities-
  • Take lambda expression with an index parameter
  • Depend on the PROPERTIES of sequential rows
  • Depend on the CLR implementation


Discussion

No Comment Found