Initial commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace RazorPagesMovie.Data;
|
||||
|
||||
public class RazorPagesMovieContext(DbContextOptions<RazorPagesMovieContext> options) : DbContext(options)
|
||||
{
|
||||
public DbSet<RazorPagesMovie.Models.Movie> Movie { get; set; } = default!;
|
||||
}
|
||||
Reference in New Issue
Block a user