I want to return the top 10 items in each group of items that I have stored in an Azure Mobile Service table.
IE._qryItemResult = _tblResult
.Where(item => item.grouptype == 1)
.Take(10)
.ToEnumerableAsync();
If I then want the top 10 items with grouptype=2 and so on... do I need to execute another query and append to the initial result or am I missing a cleverer way?
Thanks