using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; using Repo.Models; namespace Repo.Data { public class RepoContext : DbContext { public RepoContext (DbContextOptions options) : base(options) { } public DbSet Movie { get; set; } = default!; } }