This repository has been archived on 2025-10-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Cinemateket/backend/Context/DbContext.cs
haraldnilsen 2ef9843615 🗃️ included migrations for init
Co-authored-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
2023-09-18 13:37:15 +02:00

11 lines
No EOL
239 B
C#

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