2
votes
4answers
71 views
If statement or Where extension with a For Each loop?
I was wondering which of the two code samples would be more efficient (or is the difference between the two negligible)?
For Each apple in AppleController.GetRedApples().Where(Fun …
3
votes
3answers
50 views
How do I write a LINQ query that inverts the grouping of a hierarchical data source?
How would one write a LINQ query which takes a hierarchical source data and transforms it so that the grouping is inverted?
Say I have a list of Topic objects each of which contai …
3
votes
4answers
55 views
Differences between LINQ to Objects and LINQ to SQL queries
I have been using LINQ to query my POCO objects for some time, but I have not yet tried LINQ to SQL. I assume that LINQ to SQL queries are somehow converted to equivalent SQL queri …
2
votes
3answers
42 views
Using LINQ to find a common prefix?
I've got two sequences:
IEnumerable<string> x = new[] { "a", "b", "c" };
IEnumerable<string> y = new[] { "a", "b", "d", "e" };
I'd like to find the common prefix of …
1
vote
2answers
39 views
Speeding up lookup of ranges of data from a collection
Say I have a class
public class TimestampedTrackId
{
private readonly int trackId;
private readonly DateTime insertTime;
public TimestampedTrackId(int trackId, DateTim …
0
votes
1answer
18 views
Get parameter from last iteration with LINQ
How to perform this without iteration, with LINQ?
string[] flatSource = {"region1", "subregion1",
"region2", "sub1", "sub2",
"r …
1
vote
4answers
77 views
Dynamic LINQ Queries.
Is it possible to create Linq Queries at runtime.
Using an xml rule which can be translated to a Linq Query.
3
votes
3answers
44 views
Create a list of one object type from a list of another using Linq
If I have classes of Type A and B:
public class A
{
public int TotalCount;
public string Title;
}
public class B
{
public int Count;
public string Title;
}
I ha …
0
votes
5answers
133 views
Using LINQ to Objects to find items in one collection that do not match another
I want to find all items in one collection that do not match another collection. The collections are not of the same type, though; I want to write a lambda expression to specify eq …
0
votes
1answer
55 views
Need help creating Linq.Expression to Enumerable.GroupBy
I am attempting to generate an Expression tree that ultimately calls a series of GroupBy methods on the Enumerable type.
In simplified form I am attempting something like this:
I …
0
votes
1answer
52 views
Linq continuous date takewhile
Main problem: how do i group elements by their Date, only if continuous and only if they match some properties?
Details:
Given this type of object:
public class MyObj
{
pu …
0
votes
3answers
40 views
How can I use Linq to to determine if this string EndsWith a value (from a collection)?
Hi folks,
i'm trying to find out if a string value EndsWith another string. This 'other string' are the values from a collection. I'm trying to do this as an extension method, for …
1
vote
3answers
138 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 …
0
votes
1answer
34 views
Is there a way to analyse how a particular Linq-to-objects query will execute?
In the past, I've written Linq to SQL queries that haven't performed well. Using SQL Profiler (or similar) I can look at how my query is translated to SQL by intercepting it at th …
0
votes
1answer
42 views
LINQ Implementation query ?
I am setting two values based on two different conditions inside for each. Is it possible to implement the below in LINQ ?
foreach(Customer cust in Customers)
{
If(Condition …
