vote up 0 vote down star

I have been studying LINQ (a few days so far), as the end result, I failed to see the value of LINQ as a long time OO developer (I am not an SQL person).

LINQ to Objects:

If the developer is from the SQL world, then I understand he needs SQL-like statments to find the right object. But why do I need it? Since my thinking has always been OO, why do I want to give up objects in favor of select statements? I know exactly what is going on with my own search code, but do you always know what exactly LINQ uses to search for the right object?

LINQ to SQL:

It is a OR/M model which probably does not work well with big/huge records. In other words, this model works better with small sets of records. If it is a small set of data, I probably would not use a database in the first place.

flag
Should be community wiki. And I'd bet my bottom dollar this is a duplicate. – Jagd Sep 4 at 15:41
"which probably does not work well with big/huge records" I think you probably does not know what you're talking about yet are still making opinionated comments about it. – Will Sep 4 at 15:45

closed as subjective and argumentative by TheTXI, David B, Will, marc_s, Tomas Lycken Sep 4 at 15:50

5 Answers

vote up 0 vote down

Actually, for the most part I can live without the LINQ syntax, which seems to be your main complaint. I'm pretty much using the IEnumerable extension methods exclusively. The nice part about this is that I get the syntax that I want as an OO developer AND I get the benefit of automatic query construction and delayed evaluation (for LINQ to SQL) as well. It's really revolutionized the way that I write my DAL -- essentially I just extend the L2S data context as a lightweight ORM.

I find the extension methods to be a very compact way of manipulating collections of objects or SQL data.

link|flag
vote up 3 vote down

There are several misconceptions in your statement:

LINQ to Objects

You're not giving up objects. You're getting a way to query collections of objects to get only the objects you need. No more coding foreach loops and hand coding your filters. You're also getting a common syntax to query Objects, XML Documents, and Databases. Consistancy is good!

LINQ to SQL

LINQ to SQL performance doesn't degrade with the amount of data. LINQ uses Expression Trees to convert your query to pure SQL...so your performance is going to be just as good as if you were hand coding the SQL yourself (as long as you're optimizing the LINQ syntax to get the results you're looking for...the same as you'd have to do with performant SQL anyway).

Since you're not somebody that works with SQL and large amounts of data across different formats, you're missing the benefit.

LINQ gives you a common query syntax to query multiple data stores (LINQ to Objects, LINQ to SQL, LINQ to XML, etc). Each implementation of the LINQ syntax can be optimized to get every ounce of performance that is possible.

link|flag
vote up 0 vote down

Why do we need any language sugar? We can pretty much represent every logic possible with a While loop and a if statement.

Language features (at least the good ones) are there to make the language easier to use and more expressive.

link|flag
LINQ is more than just language sugar. The language sugar is the query syntax from o in objects where predicate... as opposed to objects.Where(predicate).... – Jason Sep 4 at 15:49
Okay, sugar + libraries. Woo. – Will Sep 4 at 15:53
vote up 1 vote down

LINQ is just another tool for your toolbelt. It isn't a replacement for SQL or objects. It works with SQL and with your existing objects. If you don't like it, don't use it. I don't use LINQ to go straight to SQL too much, but I love using it to do in memory filters.

There are also plenty of good examples of what LINQ can do outside of the traditional sense on this site, check this out

http://stackoverflow.com/questions/1359471/linq-get-first-character-of-each-string-in-an-array

http://stackoverflow.com/questions/1332892/split-generic-list

http://stackoverflow.com/questions/1352510/can-someone-abuse-linq-and-solve-this-money-problem

http://stackoverflow.com/questions/1331343/replace-nested-foreach-with-select-if-applicable

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.