Radzen Info

Hi…
I am trynig Radzen Blazor Studio…
I would to know how I can retrieve the first row of a db ordereb by a specific field

using var context = ARXProtocolloAPPSQLService.GetDbProtocollos(new Radzen.Query { OrderBy = "Progressivo desc" });

This method returns IQueryable and you can simply use FirstOrDefault().

Thanks
do you have a sample?