2025-12-15 10:52:47 +08:00

19 lines
430 B
C#

using Microsoft.EntityFrameworkCore;
using YD_Event.Api.Entitys;
namespace YD_Event.Api.Context
{
/// <summary>
/// 用户服务上下文
/// </summary>
public class UserContext : DbContext
{
public UserContext(DbContextOptions<UserContext> options) : base(options)
{
}
public DbSet<TestTable> TestTable { get; set; }
public DbSet<User> Users { get; set; }
}
}