Updates
This commit is contained in:
14
SVSim.Database/SVSimDbContext.cs
Normal file
14
SVSim.Database/SVSimDbContext.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using DCGEngine.Database;
|
||||
using DCGEngine.Database.Configuration;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
namespace SVSim.Database;
|
||||
|
||||
public class SVSimDbContext : DCGEDbContext
|
||||
{
|
||||
public SVSimDbContext(IOptions<DCGEDatabaseConfiguration> configuration, ILogger<DCGEDbContext> logger, DbContextOptions options) : base(configuration, logger, options)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user