generated from egmont11/ASP.Net-Core-MVC-Template
Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user