with ui-jq is working perfectly.
thnx
Hi,
we solve it like this:
using (CurrentUnitOfWork.DisableFilter(AbpDataFilters.MustHaveTenant, AbpDataFilters.MayHaveTenant))
{
var entities = _entityRepository
.GetAll()
.WhereIf(AbpSession.TenantId.HasValue, c => c.TenantId == AbpSession.TenantId.Value || c.TenantId == null) // tenant
.WhereIf(!AbpSession.TenantId.HasValue, c => c.TenantId == null); // host
...
}
It's working as we want, but we are not sure if it will work in multi database environment.
what's your opinion?
Best regards
I have also noticed that.