Tagged Questions
The igrouping tag has no wiki summary.
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 ...
9
votes
2answers
1k views
Get “Value” property in IGrouping (Linq)
I have a data structure like
public DespatchGroup(DateTime despatchDate, List<Products> products);
And I am trying to do...
var list = new List<DespatchGroup>();
foreach (var group in ...
2
votes
0answers
97 views
ListView and IGrouping
I have a linq2sql query that results in an IGrouping<Users, string>, that I want to bind to a ListView:
<ListView Name="UsersListView">
<ListView.View>
<GridView>
...
2
votes
1answer
385 views
Easiest way to convert IGrouping to IHierarchicalDataSource
I have a list of business objects that I want to display in a menu. I can quickly use LINQ to created nested groups to match the desired structure but have to manually iterate through each to ...
2
votes
2answers
450 views
Bind a SL4 TreeView to an IGrouping using Caliburn
I am just starting in the SL world and am trying to use the Caliburn NavigationShell as my starting point. I converted the solution to SL4 and use Caliburn from the trunk .
To create the basic ...
2
votes
1answer
2k views
IQueryable IGrouping how to work
i return such type IQueryable< IGrouping<int, Invoice>> List()
how can i work with it? like with generic List<Invoice> ?
2
votes
1answer
529 views
Create IGrouping from an already grouped datastructure
I've got a LINQ problem thats got me a little stumped. I can see plenty of alternative ways to find a solution but would like to try to solve the problem cos its bugging me!
public enum AnimalType {
...
1
vote
3answers
70 views
How to get values from IGrouping
I have a question about IGrouping and Select() method.
Lets say I've got IEnumerable<IGrouping<int, smth>> in this way:
var groups = list.GroupBy(x => x.ID)
where list is a ...
1
vote
3answers
1k views
Linq Lambda GroupBy and OrderBy
I would like to Group by and then order the items within the group.
how do i do it with lamda,
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ...
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
1answer
73 views
How can I make a nested projection in a Linq query when using the group by clause?
I'm trying to work with grouped data coming back from SQL.
The method I'm writing is to provide the data for a "Case Status Overview" screen.
It must produce a nested XML document.
Now, I could do it ...
0
votes
1answer
155 views
How do you page IGrouping on the grouped items rather than the group
I'm trying to use skip and take on IGrouping but I don't want to page on the grouped key I want to do it on the items that have been grouped.
-2
votes
3answers
213 views
after group by in LINQ how to get to nested values using select
http://img51.imageshack.us/i/linqquestion.png/
Everything is in the picture.
I just want to get to one of the highlighted values, for example size.
code from picture :
var ...