using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Internal; namespace Flawless.Server.Services; public class RepositoryContextFactory : DbContextFactory { public RepositoryContextFactory(IServiceProvider serviceProvider, DbContextOptions options, IDbContextFactorySource factorySource) : base(serviceProvider, options, factorySource) { } }