tanglong 752e8450bc ss
2025-06-06 15:15:42 +08:00

19 lines
432 B
C#

using Microsoft.EntityFrameworkCore;
using YD_XinWei.Api.Entitys;
namespace YD_XinWei.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; }
}
}