namespace JOBot.Backend.DAL.Context; using Models; using Microsoft.EntityFrameworkCore; public class AppDbContext(DbContextOptions options) : DbContext(options) { public DbSet Users { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); modelBuilder.Entity() .HasAlternateKey(b => b.UserId); } }