There is a List<Helper> list = new List<Helper>();
I want to use linq to pull the data for ODA. date There is an option to make through nested loops, but I would like to see a more elegant solution through linq.
class Helper { public string Articule { get; set; } public List<Date> Dates { get; set; } } class Date { public string Data { get; set; } public string Cnt { get; set; } }
HelperorArticulecollection? Or what? - Artyom Okonechnikov