Tagged Questions

Linq to Objects is a version of the Linq query engine for in-memory object collections. You use Linq to Objects to query a list of objects based on their properties.

learn more… | top users | synonyms (1)

124
votes
8answers
5k 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 ...
120
votes
14answers
70k 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 ...
52
votes
40answers
2k views

What's your favorite LINQ to Objects operator which is not built-in?

With extension methods, we can write handy LINQ operators which solve generic problems. I want to hear which methods or overloads you are missing in the System.Linq namespace and how you implemented ...
30
votes
3answers
2k views

Code equivalent to the 'let' keyword in chained LINQ extension method calls

Using the C# compilers query comprehension features, you can write code like: var names = new string[] { "Dog", "Cat", "Giraffe", "Monkey", "Tortoise" }; var result = from animalName in names ...
28
votes
8answers
49k 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 ...
24
votes
5answers
11k views

Remove duplicates in the list using linq

I have a class Items with properties (Id, Name, Code, Price). The List of Items is populated with duplicated items. For ex.: 1 Item1 IT00001 $100 2 Item2 ...
19
votes
5answers
11k views

“Nested foreach” vs “lambda/linq query” performance(LINQ-to-Objects)

In performance point of view what should you use "Nested foreach's" or "lambda/linq queries"?
19
votes
2answers
4k views

How to merge a collection of collections in Linq

I would like to be able to fusion an IEnumerable<IEnumerable<T>> into IEnumerable<T> (i.e. merge all individual collections into one). The Union operators only applies to two ...
14
votes
6answers
7k views

How to debug a LINQ Statement

I have a Linq to objects statement var confirm = from l in lines.Lines where (l.LineNumber == startline.LineNumber) || (l.LineNumber == endline.LineNumber) select l; The confirm object is ...
13
votes
3answers
4k views

Recursive control search with Linq

If I wanted to find checked check boxes on an ASP.NET page I could use the following Linq. var checkBoxes = this.Controls .OfType<CheckBox>() ...
12
votes
8answers
449 views

How can I get LINQ to return the object which has the max value for a given property?

If I have a class that looks like: public class Item { public int ClientID { get; set; } public int ID { get; set; } } And a collection of those items... List<Item> items = ...
12
votes
2answers
1k views

LINQ to SQL and a running total on ordered results

I want to display a customer's accounting history in a DataGridView and I want to have a column that displays the running total for their balance. The old way I did this was by getting the data, ...
12
votes
8answers
607 views

Your Favorite LINQ-to-Objects Queries

With LINQ, a lot of programming problems can be solved more easily - and in fewer lines of code. What are some the best real-world LINQ-to-Objects queries that you've written? (Best = simplicity ...
11
votes
10answers
518 views

Teaching coworkers LINQ

I have set myself upon a journey to educate my coworkers (all have accepted my mission, even the boss). Every day I seem to find a piece of code that could have been less error prone if my coworkers ...
10
votes
2answers
3k views

IList<T> to IQueryable<T>

I have an List and I'd like to wrap it into an IQueryable. Is this possible?
10
votes
5answers
15k views

Filter linq list on property value

I have a List<int> and a List<customObject>. The customObject class has an ID property. How can I get a List<customObject> containing only the objects where the ID property is in the ...
9
votes
1answer
240 views

How to PLINQ an existing LINQ query with Joins?

I'm using LINQ to compare two DataSets with each other to create new rows and update existing. I've noticed that the complete comparison lasts ~1,5 hours and only one of the two cores is ...
9
votes
4answers
641 views

linq-to-entities / linq-to-sql: switching from server (queryable) to client (enumerable) in the middle of a query comprehension?

NOTE: this is likely simple and my google-fu is just weak. :( In many cases, I want to do some filtering (and sometimes projection) on the server side and then switch to client-side for operations ...
9
votes
4answers
2k views

OrderBy and Top in LINQ with good performance

What is a good way to get the top 10 records from a very large collection and use a custom OrderBy? If I use the LINQ to Objects OrderBy method it is slow and takes a lot of memory because it creates ...
8
votes
8answers
216 views

LINQ GroupBy continuous time

Assuming I have a simple structure that looks like this: public class Range { public DateTime Start { get; set; } public DateTime End { get; set; } public Range(DateTime start, DateTime ...
8
votes
8answers
1k views

[Optimize This]: Slow LINQ to Objects Query

I have this query that is bothering me; it is encapsulated as a new query operator, I made two versions of it, trying to see which one performs better. Both perform horribly. First attempt; ...
8
votes
4answers
3k views

How does LINQPad reference other classes, e.g. Books in the LINQ in Action samples

I'm using LINQPad to create LINQ queries in an application I'm bulding. I noticed that in the downloaded LINQ in Action samples, e.g. example 4.04, intellisense shows a class "Books" but I don't see ...
7
votes
5answers
235 views

How can I use LINQ to avoid nested loops?

I've been reading about LINQ to Objects, and now my colleagues want me to present it to them. Now, I have an OK understanding of the operators and the syntax choices, but I've heard you can avoid ...
7
votes
8answers
132 views

Better way to check for elements in list?

If I want to perform actions such as .Where(...) or .Max(...), I need to make sure the list is not null and has a count greater than zero. Besides doing something such as the following everytime I ...
7
votes
3answers
222 views

How to partition a LINQ to Objects query?

This is a resource-allocation problem. My goal is to run a query to fetch the top-priority shift for any time-slot. The dataset is very large. For this example, let’s say there are 100 shifts each ...
7
votes
3answers
3k views

Need to debug LINQ simple queries in Visual Studio 2010

I often get in a position when I need to know why my LINQ doesnt work as intended... I use object collections and extensions. I dont want spend more than couple of minutes on it. LINQ supposed to ...
7
votes
3answers
891 views

LINQ identity function?

Just a little niggle about LINQ syntax. I'm flattening an IEnumerable<IEnumerable<T>> with SelectMany(x => x). My problem is with the lambda expression x => x. It looks a bit ugly. ...
7
votes
6answers
4k views

Optimizing Aggregate for String Concatenation

Update - for those of a facetious frame of mind, you can assume that Aggregate still produces the normal result whatever function is passed to it, including in the case being optimized. I wrote this ...
6
votes
4answers
66 views

Linq query to get shared items in a sublist

I have a class that has a property which is a List, I will name this class A. Then I have a List<A>. I need a LINQ for objects to get all the objects B that are present on ALL the items on the ...
6
votes
1answer
496 views

Extending Marc Gravell's Dynamic Linq OrderBy

I found Marc Gravell's dynamic order by great: Dynamic LINQ OrderBy I've put it in a class, LinqHelper. In this class I also have created two new classes, so that in my code I can do this: var q = ...
6
votes
2answers
394 views

Converting VB Linq to C#

I'm in the process of teaching myself C# by converting an existing project and am stuck converting the following vb linq code: Dim outStuff = From tt In (From t In Products.SelectMany(Function(p) ...
6
votes
2answers
643 views

How can I create a dynamic LINQ query in C# with possible multiple group by clauses?

I have been a programmer for some years now but I am a newcomer to LINQ and C# so forgive me if my question sounds particularly stupid. I hope someone may be able to point me in the right direction. ...
6
votes
2answers
119 views

Linq Where Clauses - Better to stack or combine?

When writing a method chain for LINQ, I can do the Where statements one of two ways: var blackOldCats = cats.Where(cat => cat.Age > 7 && cat.Colour == "noir" ) Or var blackOldCats = ...
6
votes
4answers
1k views

How to get the first element of IEnumerable

Is there a better way getting the first element of IEnumerable type of this: foreach (Image image in imgList) { picture.Width = (short)image.Columns; picture.Height = (short)image.Rows; ...
6
votes
3answers
3k views

DataTable Select vs LINQ Select

Any advice on when DataTable.Select should be used versus LINQ Select when dealing with an in-memory DataTable? I find LINQ syntax easier and more powerful, but I'm not sure if there are performance ...
6
votes
4answers
18k views

Linq to objects - select first object

I know almost nothing about linq. I'm doing this: var apps = from app in Process.GetProcesses() where app.ProcessName.Contains( "MyAppName" ) && app.MainWindowHandle != IntPtr.Zero ...
5
votes
5answers
98 views

How to get a flattened list from nested class List<T>?

I have a question using these same examples - this question is focused on a different issue. Given the following classes: [XmlRoot] public class Family { [XmlElement] public ...
5
votes
4answers
102 views

LINQ GroupBy collection

Is it possible to GroupBy in LINQ, using a collection property? e.g. void Main() { var t1 = new Test() { Children = new List<string>() { "one", "two" } }; var t2 = new Test() { ...
5
votes
2answers
83 views

Does Select followed by Where result in two iterations over the IEnumerable?

Let say I have IEnumerable<int> list = new int[] { 1, 2, 3 }; List<int> filtered = list.Select(item => item * 10).Where(item => item < 20).ToList(); The question is are there ...
5
votes
3answers
107 views

Problems with nullable types in a LINQ Function

Parent_ObjectiveID and identity are int? datatype. In my program should return an object, but it gives an error: Sequence contains no elements. int? identity = null; Objective ...
5
votes
2answers
149 views

.NET Linq to Objects strange behavior

I've got a BadImageFormatException error in this little code below. I know it isn't good practice to write a program in this way but it seems to be a bug in .NET Framework, not in my code. using ...
5
votes
3answers
462 views

Using LINQ to update string array

I'm trying to create a method to update an AssemblyInfo file with a new version string, using LINQ. I can successfully extract the string I need to update, but am not sure how to update the item in ...
5
votes
4answers
310 views

C#, objectCollection.OfType<T>() and foreach (T item in objectCollection), IEnumerable to IEnumerable<T>

To my personal coding style belongs Enumerable.OfType<T>(). I use it everywhere it makes a little bit of sense. Especially IEnumerable<T> allows mighty linqToObject functionallity. I hate ...
5
votes
3answers
196 views

What is the most efficient collection class in C# for string search

string[] words = System.IO.File.ReadAllLines("word.txt"); var query = from word in words where word.Length > "abe".Length && word.StartsWith("abe") select word; ...
5
votes
9answers
255 views

How to learn queries in LINQ

I heartily want to learn about how to build (simple and complex) queries with and without lambda expression in c#.I searched a lot , but perhaps I am may be miss some links to check. can some body ...
5
votes
2answers
91 views

How come Linq functions are available on a variable which can be of a type string

Please help me with this question. I thought that Linq works on a collection or an array. How come Linq works on a single string variable.
5
votes
4answers
354 views

Exception handling within a LINQ Expression

I have a simple LINQ-expression like: newDocs = (from doc in allDocs where GetDocument(doc.Key) != null select doc).ToList(); The problem is, GetDocument() could throw an exception. ...
5
votes
2answers
815 views

C# Merging 2 dictionaries

I'm developing an app in C# targeting .NET 3.5. In it, I have 2 similar dictionaries that contain validation criteria for a specific set of elements in my app. Both dictionaries have identical ...
5
votes
1answer
1k views

How can I filter a dictionary using LINQ and return it to a dictionary from the same type

I have the following dictionary: Dictionary<int,string> dic = new Dictionary<int,string>(); dic[1] = "A"; dic[2] = "B"; I want to filter the dictionary's items and reassign the result ...
5
votes
6answers
370 views

Using LINQ to parse the numbers from a string

Is it possible to write a query where we get all those characters that could be parsed into int from any given string? For example we have a string like: "$%^DDFG 6 7 23 1" Result must be "67231" ...

1 2 3 4 5 15