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.
December 3rd, 2007 at 11:09 am
Here is the link: http://www.linqpad.net/
101 linq samples: http://msdn2.microsoft.com/en-us/vcsharp/aa336746.aspx