13 lines
265 B
C#
13 lines
265 B
C#
using GerbilManager.Models;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
public class ApplicationContext : DbContext
|
|
{
|
|
public ApplicationContext(DbContextOptions options)
|
|
:base(options)
|
|
{
|
|
}
|
|
public DbSet<Gerbil> Gerbils { get; set; }
|
|
}
|
|
|