Exemplo n.º 1
0
        public async Task <ActionResult> IndexAsync()
        {
            var items = await DocDBRepo <UltraReading> .GetItemsAsync(r => r.Reading != string.Empty);

            return(View(items.Reverse().Take(15)));
        }