12 lines
442 B
C#
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)
|
|
{
|
|
}
|
|
} |