Search Results

0
votes

Official LINQ Extension Methods

You could search for them yourself using .NET Reflector and the CodeSearch add-in. …
0
votes

Linq Distinct on a particular Property

You can do it (albeit not lightning-quickly) like so: people.Where(p => !people.Any(q => (p != q && p.Id == q.Id))); That is, "select all people wher …
3
votes

Reasons to Learn LINQ

If you can convince your boss to let you learn new programming languages and technologies on company time, more power to you; but I wouldn't expect to, if I were you. Learn it on your own and help …
5
votes

What is the most impressive LINQ statement that you have come across?

Mads Torgersen demonstrates how to write a self-contained recursive lambda expression i …
6
votes

Is it bad practice to use LINQ to loop over and perform actions rather than just select data?

List<T> has a ForEach() method that is designed for this. …
1
vote

.net Databinding - Referencing Anonymous Type Properties

No, I don't believe there's any better way than this. The C# guys don't really support using anonymous types outside of local method scope (i.e. here you have an anonymous type attached to your Ro …
4
votes

Downcasting and Linq

To elaborate on Jon's answer, OfType is almost certainly the correct operator if you aren't willing to put these fields into your base class. For example: foreach(var …
1
vote

Clean way to reduce many TimeSpans into fewer, average TimeSpans?

I'd use a loop, but just for fun: IEnumerable<TimeSpan> AverageClumps(Queue<TimeSpan> lots, int clumpSize) { while (lots.Any()) { var portion = Math.Min( …
26
votes

How can I get every nth item from a List<T>?

return list.Where((x, i) => i % nStep == 0); …
5
votes

Using Linq to map facebook profile with my user info

I would be inclined to write something like this instead: public class FacebookMapper : IMapper { public IEnumerable<User> MapFacebookAvatars(IEnumerable<User> users …
3
votes

What’s a clean way to break up a DataTable into chunks of a fixed size with Linq?

This is quite readable and only iterates through the sequence once, perhaps saving you the rather bad performance characteristics of repeated redundant Skip() / Take() cal …
0
votes

Is there a way to capture the index value in a LINQ Where method in C#?

Your current code captures the last index of "b" in the variable index. To replicate your functionality using LINQ, use: int index = IntArray.LastOrDefault(s => s = …
2
votes

Implicit operators, Linq and Lambda expressions can make code less readable. But what is more readable?

The first, naturally. The whole point of an implicit cast is that the two types are sufficiently similar that it makes conceptual sense to just figure that they are the same. Would you bal …
0
votes

Foreach in Linq

var allPayments = Basket.basketPayments.SelectMany(p => p); var moneyOrders = allPayments.Where(p => p.paymentMethod == "Money Order"); foreach(var payment in moneyOrders) { fore …
0
votes

how to process “parallel” sequences in Linq?

There's a "Zip" method being added in 4.0 that addresses this (like a zipper, zipping up adjacent elements.) Until then, the most readable (albeit not most performant) way would probably be someth …

1 2 3 next
15 30 50 per page