views:

68

answers:

1

Is Dynamic LINQ API (released with the CSharpSamples), still the way to go, or is there a different / alternative approach with .NET 4 (and EF 4)?

A: 

See my post here please for some generic options: http://stackoverflow.com/questions/3782538/parsing-a-string-c-linq-expression.

Also EF 4 does have some built in string query parsing functionality added in...but it's completely specific to EF itself. See here for example: http://msdn.microsoft.com/en-us/library/bb338811.aspx

JeffN825