Check entity has a tenant id value.

pull/1137/head
mehmetuken 7 years ago
parent 180b39fcd6
commit 1103ed2a26

@ -154,9 +154,14 @@ namespace Volo.Abp.Application.Services
protected virtual void TryToSetTenantId(TEntity entity) protected virtual void TryToSetTenantId(TEntity entity)
{ {
if (entity is IMultiTenant tenantEntity && tenantEntity.TenantId.HasValue)
{
return;
}
var tenantId = CurrentTenant.Id; var tenantId = CurrentTenant.Id;
if (tenantId == null) if (!tenantId.HasValue)
{ {
return; return;
} }

Loading…
Cancel
Save