LINQPad - Query Analyzer for LINQ

I just tried out LINQPad. It is an app that lets you build LINQ queries on sql databases, objects and xml. You can then post this in your c# code and it gives you a collection of objects that represent your data.

Example:

for o in orders

select o.customerid

This would give you a collection of all of the customer ids that you have orders from. Here is a list of examples of LINQ code.

One Response to “LINQPad - Query Analyzer for LINQ”

  1. wordpress Says:

    Here is the link: http://www.linqpad.net/

    101 linq samples: http://msdn2.microsoft.com/en-us/vcsharp/aa336746.aspx

Leave a Reply

You must be logged in to post a comment.