12 lines
261 B
C#
12 lines
261 B
C#
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
|||
|
namespace YaleAccess.Data
|
|||
|
{
|
|||
|
public class YaleContext : DbContext
|
|||
|
{
|
|||
|
public YaleContext(DbContextOptions<YaleContext> options) : base(options) { }
|
|||
|
|
|||
|
public DbSet<Person> People { get; set; }
|
|||
|
}
|
|||
|
}
|