This repository has been archived on 2024-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
Cinemateket/backend/Context/DbContext.cs
haraldnilsen f925b87883 🗃️ created dbcontext
Co-authored-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
2023-09-15 12:11:10 +02:00

11 lines
No EOL
237 B
C#

using backend;
using Microsoft.EntityFrameworkCore;
public class MovieDbContext: DbContext
{
public MovieDbContext(DbContextOptions<MovieDbContext> options) : base(options)
{
}
public DbSet<Movie> Movies { get; set; }
}