generated from egmont11/ASP.Net-Core-MVC-Template
14 lines
330 B
C#
14 lines
330 B
C#
using Eshop.Infrastructure.Persistence;
|
|
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Eshop.Infrastructure;
|
|
|
|
public class AppDbContext : IdentityDbContext<UserEntity>
|
|
{
|
|
public AppDbContext(DbContextOptions<AppDbContext> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
}
|