2.6 Equivalent to LLBLGenProDataSource?

Posts   
 
    
SeanS
User
Posts: 14
Joined: 07-Jun-2008
# Posted on: 21-Nov-2008 16:12:11   

Updating some old code to 3.5 framework/2.6 LLBLGEN and I have a LLBLGenProDataSource from 2.0? Not sure.

I was wondering if there's a newer version that doesn't use predicate filters but lambda expressions much like the new Linq to LLBLGEN does.

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39859
Joined: 17-Aug-2003
# Posted on: 21-Nov-2008 16:16:22   

Our datasourcecontrol uses our query api and not Linq. The main reason for this was that we either had to write code to parse linq queries from strings in HTML (... not something useful) or that users could write fragments of queries using lambda expressions, but the problem with lambda expressions is that if they're not used inside a linq query, they're compiled to Func<> instances and not to Expression<Func<>> instances thus not usable for conversion to predicates (left alone the problems with aliases etc. )

Frans Bouma | Lead developer LLBLGen Pro