Added EF entity, Migrations, Whiteboard repository service
This commit is contained in:
@@ -5,8 +5,9 @@ namespace AipsCore.Infrastructure.Persistence.Db;
|
||||
public class AipsDbContext : DbContext
|
||||
{
|
||||
public DbSet<User.User> Users { get; set; }
|
||||
public DbSet<Whiteboard.Whiteboard> Whiteboards { get; set; }
|
||||
|
||||
public AipsDbContext(DbContextOptions options)
|
||||
public AipsDbContext(DbContextOptions<AipsDbContext> options)
|
||||
: base(options)
|
||||
{
|
||||
|
||||
|
||||
Reference in New Issue
Block a user