0% found this document useful (0 votes)
41 views

LINQ Vs SQL Keywords

This document compares keywords used in C# LINQ, VB LINQ, and ANSI SQL. It notes that Count(), Sum(), Skip(), SkipWhile(), Take(), TakeWhile() in C# LINQ correspond to Aggregate, Skip, Skip While, Take, Take While in VB LINQ. It also indicates that ANSI SQL uses AS instead of Count, Sum and lacks group-related keywords. Select, From, Where, Join and Into are the same across the languages.

Uploaded by

Umar Ali
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
41 views

LINQ Vs SQL Keywords

This document compares keywords used in C# LINQ, VB LINQ, and ANSI SQL. It notes that Count(), Sum(), Skip(), SkipWhile(), Take(), TakeWhile() in C# LINQ correspond to Aggregate, Skip, Skip While, Take, Take While in VB LINQ. It also indicates that ANSI SQL uses AS instead of Count, Sum and lacks group-related keywords. Select, From, Where, Join and Into are the same across the languages.

Uploaded by

Umar Ali
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 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