Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "dmali"

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.

Showing 11 to 13 of 13 entries