19 lines
432 B
C#
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; }
|
|
}
|
|
}
|