Use CurrentTenant.Change
for per tenant : https://docs.abp.io/en/abp/latest/Multi-Tenancy#change-the-current-tenant
Resolved. You need to queue a job item: https://docs.abp.io/en/abp/latest/Background-Jobs#queue-a-job-item
Hi,
See: https://docs.abp.io/en/abp/latest/Timing
Configure<AbpClockOptions>(options =>
{
options.Kind = DateTimeKind.Local;
});
Hi,
Currently ABP does not support custom cancellationToken.
We have create an issue to enhance: https://github.com/abpframework/abp/issues/9668
Hi,
You can separate the modal page and the data page, peplace the data page when you load the next page of data, not modal
Like:
HotelSearchModal
, HotelSearchModalDataList
.
Hi,
Can you explain in detail?
HI,
Sorry, should be shiwei.liang@volosoft.com
Hi,
Sorry, but this information is not enough for me to reproduce the problem
Can you create a project to reproduce? thanks. you can send it to my email : shiwei.liang@volosoft.com
Hi,
I can't reproduce the problem, can you provide more infomartion?
public async Task OnGetAsync()
{
if (CurrentUser.IsAuthenticated)
{
var stringBuilder = new StringBuilder();
stringBuilder.AppendLine($"Current tenant: {CurrentTenant.Name}");
stringBuilder.AppendLine($" Products.Blazer: {await _featureChecker.IsEnabledAsync("Products.Blazer")}");
stringBuilder.AppendLine($" Products.Blazer: {await _featureChecker.IsEnabledAsync("Products.Trouser")}");
Features = stringBuilder.ToString();
}
}