20 lines
589 B
C#
20 lines
589 B
C#
using Furion;
|
|
using Furion.DatabaseAccessor;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Dilon.EntityFramework.Core
|
|
{
|
|
public class Startup : AppStartup
|
|
{
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.AddDatabaseAccessor(options =>
|
|
{
|
|
options.CustomizeMultiTenants(); // 自定义租户
|
|
|
|
options.AddDb<DefaultDbContext>();
|
|
options.AddDb<MultiTenantDbContext, MultiTenantDbContextLocator>();
|
|
}, "Dilon.Database.Migrations");
|
|
}
|
|
}
|
|
} |