Я только что создал новое базовое приложение MVC с индивидуальностью.Я не могу понять, как заставить сущностный каркас выполнять запрос к базе данных.
У меня есть ApplicationDBContext
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
: base(options)
{
}
всякий раз, когда я пытаюсь его использовать, он просто говориту меня нет отправленных опций.
Я пытаюсь выполнить запрос к моей таблице UserAddresses и изменил мою таблицу ASPNetUsers на Users.
protected override void OnModelCreating(ModelBuilder builder)
{
base.OnModelCreating(builder);
// Customize the ASP.NET Identity model and override the defaults if needed.
// For example, you can rename the ASP.NET Identity table names and more.
// Add your customizations after calling base.OnModelCreating(builder);
// Update the ApplicationUser Table to Users and change primary column to UserId
builder.Entity<ApplicationUser>(entity =>
{
entity.ToTable("Users");
entity.Property(e => e.Id).HasColumnName("UserId");
});
}
public DbSet<UserAddress> UserAddresses { get; set; }
Это весь класс
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
: base(options)
{
}
protected override void OnModelCreating(ModelBuilder builder)
{
base.OnModelCreating(builder);
// Customize the ASP.NET Identity model and override the defaults if needed.
// For example, you can rename the ASP.NET Identity table names and more.
// Add your customizations after calling base.OnModelCreating(builder);
// Update the ApplicationUser Table to Users and change primary column to UserId
builder.Entity<ApplicationUser>(entity =>
{
entity.ToTable("Users");
entity.Property(e => e.Id).HasColumnName("UserId");
});
}
public DbSet<UserAddress> UserAddresses { get; set; }
}
Как мне подключиться к DBContext для выполнения запросов с использованием EF
Обновление
Я смог получить его, передав свой _context
в контроллер через конструкторкак это
private ApplicationDbContext _context;
public HomeController(ApplicationDbContext context)
{
_context = context;
}