using Microsoft.EntityFrameworkCore; namespace RazorPagesMovie.Data; public class RazorPagesMovieContext(DbContextOptions options) : DbContext(options) { public DbSet Movie { get; set; } = default!; public DbSet AdminUser { get; set; } = default!; public DbSet ContactMessage { get; set; } = default!; }