I have this LINQ query:
from device in _context.Device from data in _context.Data.OrderByDescending(_ => _.Time).Take(1) select data;
I us