using Entities; using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; namespace DbContextLib.Identity; public class AuthDbContext: IdentityDbContext { public AuthDbContext(DbContextOptions options) : base(options) { } public AuthDbContext() { } /* /// /// Configures the database options if they are not already configured. /// /// The options builder instance. protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { if (!optionsBuilder.IsConfigured) { optionsBuilder.UseSqlite($"Data Source=uca.HeartTrack.db"); } }*/ }