forked from amkovkov/GranuSightSoftware2
18 lines
634 B
C#
18 lines
634 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace GSS2.Core.Analysis.AmineContent.Database;
|
|
|
|
public class Context : DbContext
|
|
{
|
|
public DbSet<BrandRecord> BrandRecords => Set<BrandRecord>();
|
|
public DbSet<FeatureRecord> FeatureRecords => Set<FeatureRecord>();
|
|
public DbSet<ImageRecord> ImageRecords => Set<ImageRecord>();
|
|
// public DbSet<ResultRecord> ResultRecords => Set<ResultRecord>();
|
|
public DbSet<SeparatorRecord> SeparatorRecords => Set<SeparatorRecord>();
|
|
public DbSet<SampleRecord> SampleRecords => Set<SampleRecord>();
|
|
|
|
public Context(DbContextOptions<Context> options)
|
|
: base(options)
|
|
{ }
|
|
}
|