LINQ to SQL cheat sheet

Thumbnail of the LINQ to SQL Cheat Sheet PDF

A few short words to say I’ve put together a cheat sheet for LINQ to SQL with one page for C# and another for VB.NET.

It shows the syntax for a number of common query operations, manipulations and attributes and can be a very useful quick reference :)

Download LINQ to SQL cheat sheet (PDF) (76 KB)

[)amien

14 responses to LINQ to SQL cheat sheet

  1. Avatar for

    Information is only used to show your comment. See my Privacy Policy.

  2. Avatar for Arvind Singh
    Arvind Singh

    Thanks, its really shortest way to implement query using LINQ.

  3. Avatar for ARLibertarian
    ARLibertarian

    Thanks a LOT. I’m doing a project and having to learn this stuff on the fly. This helps!

  4. Avatar for SoCalSam
    SoCalSam

    Thanks Damien. I’m just starting a project that I wanted to use LINQ with, and this will help me a lot!

  5. Avatar for sshow

    You just managed to teach me LINQ to SQL in one A4 page. Thanks alot!

  6. Avatar for KALYAN

    Thanks for the cheat sheet. It is just the one I was looking for.

  7. Avatar for William Wegerson

    Excellent and thanks! But one word though:

    landscape

    The boxes are cramped horizontally, maybe Landscape would allow for formatted code(?). Yes I know, everyone is a critic.

  8. Avatar for Damien Guard

    Thanks Jim, I’ll update the sheet over the weekend with your changes.

    I have written a fair amount of code in VB.Net but I have to admit it was all prior to .NET 3.5.

  9. Avatar for Jim Wooley

    On your VB sheet, you should consider using the VB’s additional support of query operators Distinct, Skip, Take, Aggregate, Sum, Count, Etc. For example the Paging and Ordering example could be re-written in VB as:

    Dim page3 = From c In db.Customers _
    Order By c.ContactName, c.City Descending _
    Distinct _
    Skip 10 _
    Take 5
    

    Also, notice the Select is optional in VB if you project the entire object. When using a simple projection, you don’t need the object initializer syntax either. If you just wanted to project the ContactName and City in the above example, you could do the following:

    Dim page3 = From c In db.Customers _
    Order By c.ContactName, c.City Descending _
    Select Name = c.ContactName, c.City _
    Distinct _
    Skip 10 _
    Take 5
    

    VB takes away a number of the method syntax hurdles that C# requires.

  10. Avatar for KristoferA

    Very neat. I think you should put a link to the cheat sheet as a pegged topic in the msdn linq forums…

  11. Avatar for Damien Guard

    @Harry I just enabled it for Google Reader, which one are you using?

    @Everyone Else: Thanks for the compliments guys. I’ve never been so retweeted.

  12. Avatar for Joel

    Thanks for the sheet, I can see this being very helpful. It’s also quite nice that you split the C# & VB into separate pages.