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

11 lines
239 B
C#
Raw Normal View History

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