sharding/samples/Samples.DynamicDb.Npgsql/WebApplication1.Data/ApplicationDbContext.cs

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; }
}