You are on page 1of 1

Difference between LINQ and SQL Keywords C# LINQ let Count(), Sum(), Skip() SkipWhile() Take() TakeWhile() orderby

y group Distinct() VB LINQ Let Aggregate Skip Skip While Take Take While Order By Group By Distinct ANSI SQL AS COUNT, SUM, with no group n/a n/a n/a n/a ORDER BY GROUP BY DISTINCT

Note: Select ,From,Where,Join and Into keywords have the same name in C# LINQ,VB LINQ and ANSI SQL. Reference: http://franksworld.com/blog/archive/2009/01/02/11292.aspx And, further updates on difference between questions and answers, please visit my blog @ http://onlydifferencefaqs.blogspot.in/

You might also like