15 lines
411 B
C#
15 lines
411 B
C#
using Volo.Abp.Data;
|
|
using Volo.Abp.MultiTenancy;
|
|
using Yi.Framework.SqlSugarCore.Abstractions;
|
|
|
|
namespace Yi.Framework.TenantManagement.Domain
|
|
{
|
|
public static class TenantManagementExtensions
|
|
{
|
|
public static IDisposable ChangeDefalut(this ICurrentTenant currentTenant)
|
|
{
|
|
return currentTenant.Change(null, ConnectionStrings.DefaultConnectionStringName);
|
|
}
|
|
}
|
|
}
|