hi
Please configure the TestParentChild
in EF Core.
b.Property(x => x.Id).ValueGeneratedOnAdd();
Seems no problem, Can your share a simple project? liming.ma@volosoft.com
Can you share the code of INitificationsAppService and its implementation class?
hi
The** tenant id** may be changed by code, so the caller is responsible for passing the tenant name.
using(currentTenant.Change(tenantId))
{
}
hi
You can customize related application services or repositories, and exclude some special entities in query results.
For example, extending the **User **entity to add some properties that represent identity(Super User, Admin, Employee ).
hi
Can you direct share a template project with me? liming.ma@volosoft.com
I will check it locally.
hi
You can override the GetClientIpAddress
method to use IPV6 address.
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/WebClientInfo/HttpContextWebClientInfoProvider.cs#L30
Normalize Auditlogs table as it has both TenantId and TenantName fields?
What do you mean? Can you explain?
Is there a way to sync entities across all tenant databases when IMultitenant is not used
You can switch to Host DB when querying this entity.
using (CurrentTenant.Change(null)) //Host
{
return await _yourEntityRepository.GetAllAsync();
}