Update to latest version and show additional features
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
using GerstITS.Data.EntityFramework;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace GerstITS.Examples.JobDashboard.Data;
|
||||
|
||||
public sealed class JobRunDbContext : EntityFrameworkDbContextBase, IDbContext
|
||||
{
|
||||
#region Properties
|
||||
|
||||
public DbSet<JobRunEntity> JobRuns => Set<JobRunEntity>();
|
||||
|
||||
protected override string ConnectionStringName => "JobRunDbContext";
|
||||
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
|
||||
public JobRunDbContext(IDatabaseConfigurator databaseConfigurator,
|
||||
DbContextOptions<JobRunDbContext> dbContextOptions)
|
||||
: base(databaseConfigurator, dbContextOptions)
|
||||
{
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user