Pavel Voronin
Pavel Voronin
I meant the other way around. Going from proto to service implementation. Not even generated part, but the one with overrides - to the descendant implementation.
Something weird is happening indeed > Building bundle... > dotnet publish --runtime debian.11-x64 --output /tmp/0y0q0v0k.xfw/publish **--no-self-contained** --configuration Release but then I see this warning: > /usr/share/dotnet/sdk/6.0.300/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets(1114,5): warning NETSDK1179: One of...
Also not in v 8? =)
@roji , I keep questioning myself how come I always bump into edge cases while others are happy with what they have =D
@bricelam, I'd 100% upvote, if I faced the issue before, but it happened on the 2nd day after I used sqlite provider for the first time. =)
Here's the code I am playing with: ```CSharp using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; var builder = WebApplication.CreateBuilder(args); // Add services to the container. // Learn more about configuring Swagger/OpenAPI...
Repository: https://github.com/voroninp/EfMultischema
As docs say that `IModelCacheKeyFactory` must be a singleton, I tried this apporach: ``` internal sealed class ModelPerTenantCacheKeyFactory : IModelCacheKeyFactory { private readonly IServiceProvider _serviceProvider; public ModelPerTenantCacheKeyFactory(IServiceProvider serviceProvider) { _serviceProvider...
@roji , I need some help here. I watched [this video about DI in EF](https://www.youtube.com/watch?v=pYhe-Mt0HzI), but I still do not understand how I can integrate DI containers, so EF services...
Still do not get it. I see the registration of `DynamicModelCacheKeyFactory` not `DynamicModelCacheKeyFactoryDesignTimeSupport` 