Hi,
I am working with your SfGrid and Ef Core in a Blazor Application.
When I initialize the DbContext by DI in our Startup.cs like this:
services.AddDbContext(options => options.UseCosmos(cosmosUrl, cosmosKey, cosmosDatabase));
the data collection in the SfGrid, which came out of the database, is looking fine. All is displayed and works correct.
(FYI: it doesn't matter if I use the SQLServer or Cosmos DB Provider. Same result.)
But if I change the initialization to:
services.AddDbContext(options => options.UseLazyLoadingProxies().UseCosmos(cosmosUrl, cosmosKey, cosmosDatabase));
the application freezes in an infinite loop. Here an example screenshot:

The Spinner spins infinite, the site is freezed, no error output is shown up, the correct data is also displayed, but the text "no records to display", too. Which is curious.
It looks like, that the grid "searches" for the virtual navigation properties or something, although I do not use them.
After a long time the console shows:

but the website is still freezed.
What am I doing wrong? Did I missed something?
Thank you