Files
WorkStation/WorkStation.Server/Context/MyDbContext.cs

11 lines
271 B
C#
Raw Normal View History

2025-07-07 18:41:36 +08:00
using Microsoft.EntityFrameworkCore;
using WorkStation.Server.Context.Entity;
namespace WorkStation.Server.Context
{
public class MyDbContext(DbContextOptions<MyDbContext> options) : DbContext(options)
{
public DbSet<User> Users { get; set; }
}
}