Saturday, October 2, 2010

Azure Linq Queries

Interesting links for Linq queries

  1. http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx
  2. http://msdn.microsoft.com/en-us/library/bb397676.aspx
  3. http://convective.wordpress.com/2010/02/06/queries-in-azure-tables/
  4. http://msdn.microsoft.com/en-us/library/dd894039.aspx

For some reason Linq queries with directly selecting the required entity using select new { test1, test2} does not seem to work.

Using Linq to select all entities and then use another linq query to filter data does not work.

Using Linq to select all entities and then use foreach to filter the entities required seem to work

No comments:

Post a Comment