bmoteria
bmoteria
@ajcvickers Is lazy loading supported when using `IDbContextFactory`? I have [lazy loading without proxies](https://docs.microsoft.com/en-us/ef/core/querying/related-data/lazy?#lazy-loading-without-proxies) setup and is throwing exception when accessing a virtual object of an entity. **Exception details:** `...
@ajcvickers Thanks for the great information! Earlier I had wrapped the query within `_dbContextFactory.CreateDbContext()` using statement inside a repository (which had disposed the DbContext before exiting the method). This is...
@javiercn No. The blazor server app and signalr hub are hosted on the same site. Here is the [sample project](https://github.com/dotnet/aspnetcore/files/5090336/BlazorSignalRDemo_WinAuth.zip).
@captainsafia Is there any workaround for this issue? We're writing an enterprise application and we need to determine if could proceed further or find an alternative path. Thanks! (cc @BrennanConroy)
We found a temporary workaround. Instead of using signalr, we now use Scoped service (for example `TaskCountService.cs`). The code inside task count service looks like so: ``` public event Action...