73
votes
33answers
7k views
What’s the hardest or most misunderstood aspect of LINQ?
Background: Over the next month, I'll be giving three talks about or at least including LINQ in the context of C#. I'd like to know which topics are worth giving a fair amount of attention to, based …
63
votes
8answers
2k views
Learning about LINQ
Overview
One of the things I've asked a lot about on this site is LINQ. The questions I've asked have been wide and varied and often don't have much context behind them. So in an attempt to …
33
votes
16answers
7k views
LINQ-to-SQL vs stored procedures?
I took a look at the "Beginner's Guide to LINQ" post here on StackOverflow (http://beta.stackoverflow.com/questions/8050/beginners-guide-to-linq), but had a follow-up question:
We're about to ramp up …
22
votes
9answers
5k views
NHibernate vs LINQ to SQL
As someone who hasn't used either technology on real-world projects I wonder if anyone knows how these two complement each other and how much their functionalities overlap?
21
votes
12answers
2k views
Which LINQ syntax do you prefer? Fluent or Query Expression
LINQ is one of the greatest improvements to .NET since generics and it saves me tons of time, and lines of code. However, the fluent syntax seems to come much more natural to me than the query …
20
votes
2answers
472 views
Automatically Compile Linq Queries
We've found that compiling our Linq queries is much, much faster than them having to compile each time, so we would like to start using compiled queries. The problem is that it makes code harder to …
18
votes
14answers
2k views
Beginners Guide to LINQ
During the beta of Stack Overflow, I have seen quite a few questions about LINQ SQL but know nothing about it... it sounds very interesting.
What is LINQ and how do I get started?
Links guides or …
17
votes
6answers
1k views
How are people unit testing code that uses Linq to SQL
How are people unit testing code that uses Linq to SQL?
15
votes
12answers
562 views
Will bad things happen to me if I name my arrays, collections, lists, enumerables, etc. just the plural of what they contain?
I have always thought it was "best practice" to be explicit in naming my collection variables. So, if I had a collection of Car objects, I would typically name a Car[] carArray and a List<Car> …
14
votes
14answers
774 views
What is the biggest mistake people make when starting to use LINQ?
What are the fundamental misunderstandings people have when they first start using LINQ?
For instance, do they think it is one thing when it is really something else?
And, are there some best …
14
votes
3answers
1k views
When should I dispose of a data context
I'm currently writing a data access layer for an application. The access layer makes extensive use of linq classes to return data. Currently in order to reflect data back to the database I've added a …
14
votes
18answers
866 views
Is there a difference betweeen Select * and Select [list each col]
I'm using MS SQL Server 2005. Is there a difference, to the SQL engine, between
SELECT * FROM MyTable;
and
SELECT ColA, ColB, ColC FROM MyTable;
When ColA, ColB, and ColC represent every column …
14
votes
6answers
907 views
Am I missing something about LINQ?
I seem to be missing something about LINQ. To me, it looks like it's taking some of the elements of SQL that I like the least and moving them into the C# language and using them for other things.
I …
13
votes
6answers
309 views
Do LINQ queries have a lot of overhead?
Are simple LINQ queries on an IEnumerable<T> lightweight or heavyweight? How do they compare to writing for or foreach loops by hand? Is there a general guideline for when to prefer LINQ versus …
13
votes
3answers
3k views
What is the difference between IQueryable<T> and IEnumerable<T>?
What is the difference between IQueryable<T> and IEnumerable<T>?
