Why Select clause comes after from clause in LINQ?

Submitted by: Administrator
The reason is, LINQ is used with C# or other programming languages, which requires all the variables to be declared first. From clause of LINQ query just defines the range or conditions to select records. So that's why from clause must appear before Select in LINQ.
Submitted by: Administrator

Read Online LINQ Job Interview Questions And Answers