shape-repository/SampleApplication/SampleDbContext.cs

14 lines
304 B
C#

using Microsoft.EntityFrameworkCore;
namespace SampleApplication
{
public class SampleDbContext : DbContext
{
public SampleDbContext(DbContextOptions<SampleDbContext> options) : base(options)
{
}
public DbSet<Entities.ShapeInput> Shapes { get; set; }
}
}