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.
