using Microsoft.EntityFrameworkCore; using MvcMovie.Models; namespace MvcMovie.Data { public class MvcMovieContext : DbContext { public MvcMovieContext (DbContextOptions options) : base(options) { } public DbSet Movie { get; set; } public DbSet Roles { get; set; } public DbSet Users { get; set; } } }