Hello,
I have this method :
public void MaxMoneySoldInaHour(List transactions)
{
var answer = transactions.
GroupBy(i => i.TimeWhenSold.Hour).
Select(group => new { Hour = group.Key, Count = group.Sum(i => i.TotalPrice)}).
ToList();
//TransactionCVSParser.WriteOutComeMoney(answer);
}
}
public void MaxMoneySoldInaHour(List
{
var answer = transactions.
GroupBy(i => i.TimeWhenSold.Hour).
Select(group => new { Hour = group.Key, Count = group.Sum(i => i.TotalPrice)}).
ToList();
//TransactionCVSParser.WriteOutComeMoney(answer);
}
}
but I try to find the max of the sum calculated by the select.
How can I make that work ?
Roelof
RoelofPosted Apr 15, 2020, 11:03 AM
Piyush PansuriyaPosted Apr 15, 2020, 8:24 AM
Jignesh KumarPosted Apr 15, 2020, 8:17 AM