using Microsoft.EntityFrameworkCore; using Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Data { public class SurveyContext:DbContext { public SurveyContext(DbContextOptions option):base(option) { } public DbSet Pages { get; set; } public DbSet Banners { get; set; } public DbSet
Addresss { get; set; } public DbSet