// ApplicationDbContext.cs using Microsoft.EntityFrameworkCore; public class ApplicationDbContext : DbContext { public ApplicationDbContext(DbContextOptions options) : base(options) { } public DbSet Users { get; set; } = null!; } // UserEntity.cs public class UserEntity { public ulong Id { get; set; } public string Name { get; set; } }