Template
mirror of
https://github.com/egmont11/ASP.Net-Core-MVC-Template.git
synced 2026-07-24 07:09:56 +02:00
14 lines
314 B
C#
14 lines
314 B
C#
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using TemplateWeb.Entities;
|
|
|
|
namespace TemplateWeb.Data;
|
|
|
|
public class AppDbContext : IdentityDbContext<UserEntity>
|
|
{
|
|
public AppDbContext(DbContextOptions<AppDbContext> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
}
|