before migration
This commit is contained in:
@@ -7,18 +7,18 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Apollon.EntityFramework
|
||||
{
|
||||
public class TournamentsDBContextFactory
|
||||
public class TournamentsDbContextFactory
|
||||
{
|
||||
private readonly DbContextOptions _options;
|
||||
|
||||
public TournamentsDBContextFactory(DbContextOptions options)
|
||||
public TournamentsDbContextFactory(DbContextOptions options)
|
||||
{
|
||||
_options = options;
|
||||
}
|
||||
|
||||
public TournamentsDBContext Create()
|
||||
public TournamentsDbContext Create()
|
||||
{
|
||||
return new TournamentsDBContext(_options);
|
||||
return new TournamentsDbContext(_options);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user