using JOBot.Backend.DAL.Models; using Microsoft.EntityFrameworkCore; namespace JOBot.Backend.DAL.Context; 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); } }