14 lines
435 B
C#
14 lines
435 B
C#
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)
|
|
{
|
|
}
|
|
} |