1
0
Flawless-Version-Control/Flawless.Server/Services/RepositoryContextFactory.cs

12 lines
442 B
C#

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