uler3161

Results 17 comments of uler3161

I found this same problem here: https://github.com/SignalR/SignalR/issues/4402. I suspect it's doing pretty much the same kind of logic? I tried increasing table count. Doesn't help. I ran the SQL profiler...

The thought had occurred to me that I only want one server to listen for messages. That might fix my problems by cutting down on so many queries, but I...

Thanks for the response. I do have Service Broker enabled. It's not clear in the docs what "very high degrees of scale-out" means, but I suppose with 50 servers you...

Here is some updated code: ``` public class RecordingTask(ILogger logger, Camera camera, CancellationToken jobCancellationToken, IHostApplicationLifetime hostApplicationLifetime) { private Camera? Camera { get; } = camera; private CancellationToken JobCancellationToken { get;...

Thanks @mokarchi. It seems like your examples are mapping the navigation properties before EF has a chance to do it and at that point I can wire up my eventss?...

> [@uler3161](https://github.com/uler3161) If you'd like to avoid this repetitive call implement a custom interceptor and register it with the DbContext. As mentioned in my original post, it appears to me...

> you can combine it with a post-materialization step to initialize event handlers: > > ``` > public class CustomMaterializationInterceptor : IMaterializationInterceptor > { > public object InitializedInstance(MaterializationInterceptionData materializationData, object...