Domande taggate «igrouping»

4
Come ottenere valori da IGrouping
Ho una domanda IGroupinge il Select()metodo. Diciamo che ho un IEnumerable<IGrouping<int, smth>>in questo modo: var groups = list.GroupBy(x => x.ID); dov'è lista List<smth>. E ora ho bisogno di passare i valori di ciascuno IGroupinga un altro elenco in qualche modo: foreach (var v in structure) { v.ListOfSmth = groups.Select(...); // …
211 c#  linq  select  igrouping 

4
Ottieni proprietà "Value" in IGrouping
Ho una struttura di dati come public DespatchGroup(DateTime despatchDate, List<Products> products); E sto provando a fare ... var list = new List<DespatchGroup>(); foreach (var group in dc.GetDespatchedProducts().GroupBy(i => i.DespatchDate)) { // group.Values is not correct... how do I write this? list.Add(new DespatchGroup(group.Key, group.Values); } Ovviamente non capisco IGroupingperché non riesco …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.