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