using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using SurveyBackend.Core.Models; namespace SurveyBackend.Infrastructure.Data; public class DataContext : IdentityDbContext, int> { public DbSet Groups { get; set; } public DataContext(DbContextOptions options) : base(options) { Database.EnsureCreated(); } }