using Microsoft.EntityFrameworkCore; using WorkStation.Server.Context.Entity; namespace WorkStation.Server.Context { public class MyDbContext(DbContextOptions options) : DbContext(options) { public DbSet Users { get; set; } } }