Linq vs LLBLGen

Posts   
 
    
Ian avatar
Ian
User
Posts: 511
Joined: 01-Apr-2005
# Posted on: 08-Dec-2007 14:47:41   

Hiya,

Is there an artice somewhere that can convince me that I still need LLBLGen even though I can now use LINQ?

Cheers, Ian

jmeckley
User
Posts: 403
Joined: 05-Jul-2006
# Posted on: 08-Dec-2007 16:05:47   

LINQ in it self is a object query language (my very crude interpretation). there are different flavors of LINQ: LINQ to XML, LINQ to Sql, LINQ to ...

LINQ to SQL looks "pretty", and for simple read-only queries it's not a bad choice. However once you approach complex graphs and CUD operations LINQ to SQL falls apart.

SD is creating LINQ to LLBL (for lack of a better term). These objects are wrappers for LLBL objects. So you have a choice of using LINQ with LLBL, or straight LLBL. There is a thread around here somewhere I that explores LINQ more.

Posts: 254
Joined: 16-Nov-2006
# Posted on: 08-Dec-2007 23:45:03   

I would start by reading through these posts which discuss LINQ and it's relationship to LLBLGEN

http://weblogs.asp.net/fbouma/archive/2007/09/11/developing-linq-to-llblgen-pro-day-0.aspx

Essentially LINQ performs a subset of what you can do with LLBLGEN, a big subset.