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

11 lines
271 B
C#

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; }
}
}