using FlexJobApi.Core;
using Furion.DatabaseAccessor;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Diagnostics;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.EntityFramework.Core
{
///
/// 人力资源数据库上下文
///
[AppDbContext("HumanResources", DbProvider.SqlServer)]
public class HumanResourcesDbContext : AppDbContext
{
public HumanResourcesDbContext(DbContextOptions options) : base(options)
{
}
///
/// 地区
///
public DbSet BaseArea { get; set; }
}
}