using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using Model; namespace Data { public class SurveyContext: IdentityDbContext { public SurveyContext(DbContextOptions option):base(option) { } public DbSet Pages { get; set; } public DbSet Banners { get; set; } public DbSet
Addresss { get; set; } public DbSet