16 lines
387 B
C#
16 lines
387 B
C#
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using WebApplication1.Data.Models;
|
|
|
|
namespace WebApplication1.Data;
|
|
|
|
public class ApplicationDbContext : IdentityDbContext
|
|
{
|
|
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options)
|
|
{
|
|
}
|
|
|
|
public DbSet<TestModel> TestModels { get; set; }
|
|
|
|
}
|