Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
1answer
2k views

ILookup<TKey, TVal> vs. IGrouping<TKey, TVal>

I've been having trouble articulating the differences between ILookup<TKey, TVal> and IGrouping<TKey, TVal>, and am curious if I understand it correctly now. LINQ compounded the issue by ...
3
votes
2answers
226 views

Creating ILookups

I've got an ILookup generated by some complicated expression. Let's say it's a lookup of people by last name. (In our simplistic world model, last names are unique by family) ILookup<string, ...
2
votes
6answers
148 views

Empty ILookup<K, T>

I have a method that returns an ILookup. In some cases I want to return an empty ILookup as an early exit. What is the best way of constructing an empty ILookup?
2
votes
2answers
225 views

Is there a way to flatten a .Net ILookup<TKey, TElement> into a List<TElement>?

Is there a quick way to get a flattened List<TElement> from an ILookup<TKey, TElement> that was created from the IEnumerable<TElement> extension? Updated with example ...
1
vote
1answer
81 views

filter linq lookup based on values

I would like to filter a linq Lookup based on its values: the lookup: ILookup<int, Article> lookup here's what I've got so far which isn't working: IList<int> cityIndexes = ...
1
vote
1answer
569 views

LINQ Convert from IGrouping to Lookup

I have two variables of type ILookup. I wanted to use Union or Concat to combine their values and assign the result to a third variable of the same type. Both Union and Concat return IGrouping. It ...
0
votes
2answers
57 views

Linq: Create empty IGrouping

I would like to create a function using Linq that summarizes an incoming sequence of values. The function should look something like this: IDictionary<TKey, Summary<TKey>> ...
0
votes
2answers
161 views

Linq - convert an ILookup into another ILookup

This should be simple, but I can't think of a good way to do it. How do you transform an ILookup into another ILookup? For example, how would you copy/clone an ILookup, producing another ILookup with ...