Tôi có một cấu trúc dữ liệu như
public DespatchGroup(DateTime despatchDate, List<Products> products);
Và tôi đang cố gắng làm ...
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);
}
Tôi rõ ràng là không hiểu IGrouping
vì tôi không thể thấy làm thế nào để thực sự có được các bản ghi dữ liệu trong nhóm!