Language Integrated Query (LINQ) is a Microsoft .NET Framework component that adds native data querying capabilities to .NET languages.
390
votes
3answers
113k views
Multiple “order by” in LINQ
I have two tables, movies and categories, and I get an ordered list by categoryID first and then by Name.
The movie table has three columns, ID, Name, and CategoryID.
The category table two has ...
286
votes
11answers
231k views
LINQ query on a DataTable
I'm trying to perform a LINQ query on a DataTable object and bizarrely I am finding that performing such queries on DataTables is not straightforward. For example:
var results = from myRow in ...
245
votes
19answers
116k views
LINQ equivalent of foreach for IEnumerable<T>
I'd like to do the equivalent of the following in LINQ, but I can't figure out how:
IEnumerable<Item> items = GetItems();
items.ForEach(i => i.DoStuff());
What is the real syntax?
237
votes
14answers
119k views
Dynamic LINQ OrderBy
I found an example in the VS2008 Examples for Dynamic LINQ that allows you to use a sql-like string (e.g. OrderBy("Name, Age DESC")) for ordering. Unfortunately, the method included only works on ...
236
votes
3answers
83k views
Group By Multiple Columns
How can I do GroupBy Multiple Columns in LINQ
Something similar to this in SQL:
SELECT * FROM <TableName> GROUP BY <Column1>,<Column2>
How can I convert this to LINQ:
...
231
votes
22answers
59k views
172
votes
7answers
22k views
Returning IEnumerable<T> vs IQueryable<T>
what is the difference between returning iqueryable vs ienumerable.
IQueryable<Customer> custs = from c in db.Customers
where c.City == "<City>"
select c;
IEnumerable<Customer> ...
165
votes
5answers
44k views
What is the difference between IQueryable<T> and IEnumerable<T>?
What is the difference between IQueryable<T> and IEnumerable<T>?
148
votes
8answers
55k views
When to use .First and when to use .FirstOrDefault with LINQ?
I've searched around and haven't really found a clear answer as to when you'd want to use .First and when you'd want to use .FirstOrDefault with LINQ.
When would you want to use .First? Only when ...
145
votes
8answers
7k 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 ...
143
votes
9answers
95k views
using LINQ to remove objects within a List<T>
I have LINQ query such as:
var authors = from x in authorsList
where x.firstname == "Bob"
select x;
Given that authorsList is of type List, how can I delete any Author ...
139
votes
10answers
14k views
Is it better to call ToList() or ToArray() in LINQ queries?
I often run into the case where I want to eval a query right where I declare it. This is usually because I need to iterate over it multiple times and it is expensive to compute. For example:
string ...
130
votes
7answers
86k views
How to do SQL Like % in Linq?
I have a procedure in SQL that I am trying to turn into Linq:
SELECT O.Id, O.Name as Organization
FROM Organizations O
JOIN OrganizationsHierarchy OH ON O.Id=OH.OrganizationsId
where OH.Hierarchy ...
126
votes
3answers
13k views
Which method performs better: .Any() vs .Count() > 0?
in the System.Linq namespace, we can now extend our IEnumerable's to have theAny() and Count() extension methods.
I was told recently that if i want to check that a collection contains 1 or more ...
124
votes
24answers
54k views
LINQ-to-SQL vs stored procedures? [closed]
I took a look at the "Beginner's Guide to LINQ" post here on StackOverflow (http://stackoverflow.com/questions/8050/beginners-guide-to-linq), but had a follow-up question:
We're about to ramp up a ...
117
votes
8answers
61k views
Linq Distinct on a particular Property
I am playing with Linq to learn about it but I can't figure out how to Distinct when I do not have a simple list (a simple list of integer is pretty easy to do, this is not the question). What if want ...
109
votes
8answers
25k 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?
107
votes
8answers
33k views
Retrieving Property name from lambda expression
Is there a better way to get the Property name when passed in via a lambda expression?
Here is what i currently have.
eg.
GetSortingInfo<User>(u => u.UserId);
It worked by casting it as ...
105
votes
14answers
17k views
Which LINQ syntax do you prefer? Fluent or Query Expression [closed]
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 ...
104
votes
3answers
51k views
Linq .Any VS .Exists - Whats the difference?
Using Linq on collections, what is the difference between the following lines of code?
if(!coll.Any(i => i.Value))
and
if(!coll.Exists(i => i.Value))
Update 1
When I disassemble .Exists ...
104
votes
3answers
51k views
SQL to LINQ Tool [closed]
Is there a tool out there which can convert SQL syntax to LINQ syntax? I just want to rewrite basic queries with join, etc, to LINQ. It would save me a lot of time.
Cheers!
100
votes
5answers
46k views
How to use LINQ to select object with minimum or maximum property value
I have a Person object with a Nullable DateOfBirth property. Is there a way to use LINQ to query a list of Person objects for the one with the earliest/smallest DateOfBirth value.
Here's what I ...
100
votes
3answers
93k views
LINQ - Left Join, Group By, and Count
Let's say I have this SQL:
SELECT p.ParentId, COUNT(c.ChildId)
FROM ParentTable p
LEFT OUTER JOIN ChildTable c ON p.ParentId = c.ChildParentId
GROUP BY p.ParentId
How can I translate this into ...
97
votes
9answers
44k views
LINQ: When to use SingleOrDefault vs. FirstOrDefault() with filtering criteria
Consider the IEnumerable extension methods SingleOrDefault() and FirstOrDefault()
MSDN documents that SingleOrDefault:
Returns the only element of a sequence, or a default value if the sequence ...
96
votes
9answers
49k views
Using Linq to concatenate strings
What is the most efficient way to write the old-school:
StringBuilder sb = new StringBuilder();
if (strings.Count > 0)
{
foreach (string s in strings)
{
sb.Append(s + ", ");
}
...
94
votes
6answers
24k views
Difference Between Select and SelectMany
I've been searching the difference between those two but I couldn't find actually what I want. I need learn the difference when using LINQ To SQL but they all gave me standard array examples.
Can ...
92
votes
10answers
66k views
How would you do a “not in” query with Linq?
I have 2 collections which have an Email property in both collections. I need to get a list of the items in the first list where the Email does not exist in the second list. With SQL I would just use ...
91
votes
7answers
51k views
Concat all strings inside a List<string> using LINQ
Wondering if there is an easy LINQ Expression to concatenate my entire List collection items to a single string with a Delimiter character.
UPDATE: What if the collection is of custom objects instead ...
88
votes
5answers
71k views
OrderBy descending in Lambda expression?
I know in normal linq grammar, "orderby xxx descending" is very easy, but how do I do this in Lambda expression?
86
votes
13answers
49k views
LINQ: Max or Default?
What is the best way to get the Max value from a LINQ query that may return no rows? If I just do
Dim x = (From y In context.MyTable _
Where y.MyField = value _
Select ...
85
votes
12answers
28k views
Split List into Sublists with LINQ
I believe this is another easy one for you LINQ masters out there.
Is there any way I can separe a List into several separate lists of SomeObject, using the item index as the delimiter of each split?
...
81
votes
12answers
23k views
Wrap a delegate in an IEqualityComparer
Several Linq.Enumerable functions take an IEqualityComparer<T>. Is there a convenient wrapper class that adapts a delegate(T,T)=>bool to implement IEqualityComparer<T>? It's easy enough ...
80
votes
5answers
57k views
Linq to Sql: Multiple left outer joins
I'm having some trouble figuring out how to use more than one left outer join using LINQ to SQL. I understand how to use one left outer join. I'm using VB.NET. Below is my SQL syntax.
T-SQL
...
80
votes
5answers
41k views
IEnumerable vs List - What to Use? How do they work?
I have some doubts over how Enumerators work, and LINQ. Consider these two simple selects:
List<Animal> sel = (from animal in Animals
join race in Species
...
79
votes
7answers
1k views
Does the order of LINQ functions matter?
Basically, as the question states... does the order of LINQ functions matter in terms of performance? Obviously the results would have to be identical still...
Example:
myCollection.OrderBy(item ...
79
votes
16answers
50k views
Checking if a list is empty with LINQ
What's the "best" (taking both speed and readability into account) way to determine if a list is empty? Even if the list is of type IEnumerable<T> and doesn't have a Count property.
Right now ...
77
votes
5answers
31k views
Entity Framework: There is already an open DataReader associated with this Command
I am using Entity Framework and occasionally i will get this error.
EntityCommandExecutionException
{"There is already an open DataReader associated with this Command which must be closed first."}
...
77
votes
7answers
65k views
LINQ Select Distinct with Anonymous Types
So I have a collection of objects. The exact type isn't important. From it I want to extract all the unique pairs of a pair of particular properties, thusly:
myObjectCollection.Select(item=>new
...
75
votes
14answers
51k views
Update all objects in a collection using Linq
Is there a way to do the following using Linq:
foreach (var c in collection)
{
c.PropertyToSet = value;
}
To clarify, I want to iterate through each object in a collection and then update a ...
75
votes
6answers
44k views
Linq to Entities - Sql “IN” clause
In T-SQL you could have a query like:
SELECT * FROM Users WHERE User_Rights IN ("Admin", "User", "Limited")
How would you replicate that in a Linq to Entities query? Is it even possible? Thanks!
72
votes
2answers
56k views
LINQ query to return a Dictionary<string, string>
I have a collection of MyClass that I'd like to query using LINQ to get distinct values, and get back a Dictionary<string, string> as the result, but I can't figure out how I can do it any simpler ...
69
votes
4answers
6k views
Preserving order with LINQ
I use LINQ to Objects instructions on an ordered array.
Which operations shouldn't I do to be sure the order of the array is not changed?
69
votes
2answers
22k views
Can I return the 'id' field after a LINQ insert?
When I enter an object into the DB with Linq-to-SQL can I get the id that I just inserted without making another db call? I am assuming this is pretty easy, I just don't know how.
68
votes
6answers
40k views
Case insensitive string compare in LINQ-to-SQL
I've read that it's unwise to use ToUpper and ToLower to perform case-insensitive string comparisons, but I see no alternative when it comes to LINQ-to-SQL. The ignoreCase and CompareOptions arguments ...
67
votes
4answers
22k views
VB.NET equivalent to C# var keyword
Is there a VB.NET equivalent to the C# var keyword?
I would like to use it to retrieve the result of a LINQ query.
65
votes
5answers
122k views
LINQ to read XML
I got this XML file
<root>
<level1 name="A">
<level2 name="A1" />
<level2 name="A2" />
</level1>
<level1 name="B">
<level2 ...
64
votes
3answers
59k views
Using IQueryable with Linq
What is the use of IQueryable in the context of Linq. Is it used for developing extension methods or any other purpose?
64
votes
10answers
38k views
LINQ to SQL: Return anonymous type?
Using the simple example below, what is the best way to return results from multiple tables using Linq to Sql?
Say I have two tables:
Dogs: Name, Age, BreedId
Breeds: BreedId, BreedName
I want ...
63
votes
2answers
18k views
Is linq's let keyword better than its into keyword?
I'm currently brushing up on LINQ and am trying to comprehend the difference between the let and using the into keyword. So far the let keyword seems better than the into keyword as far as my ...
63
votes
10answers
118k views
Sorting a list using Lambda/Linq to objects
I have the name of the "sort by property" in a string. I will need to use Lambda/Linq to sort the list of objects.
Ex:
public class Employee
{
public string FirstName {set; get;}
public string ...

