using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using Sequence.Entities; public class DbContext : IdentityDbContext, Guid> { public DbContext(DbContextOptions options) : base(options) { } public DbSet Cards { get; set; } }