blob: a912cc4e391deff9676d8eec9053e9480a6f7d69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using Elements.Data.Models;
using Microsoft.EntityFrameworkCore;
namespace Elements.Data;
public class ApplicationDbContext : DbContext
{
public DbSet<Element> Elements { get; set; }
public DbSet<User> Users { get; set; }
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options)
{
}
}
|