Starts in:
2 DAYS
3 HRS
29 MIN
20 SEC
Starts in:
2 D
3 H
29 M
20 S

Activities of "thanhlg"

Is the Blazor server a tiered solution?

Yes, that's correct.

It worked. Thank you very much.

But I'm still facing an issue. Currently, in Blazor WebAssembly, I have code in HttpApi.Client.

and I use context.GetHttpContext().Request.Headers["screen-url"].ToString(); to get the URL.

However, using this approach won't work in Blazor Server. Is there any way to retrieve the URL when using Blazor Server?

It seems that the project screenshot you sent is not mine. I have tried downloading and checking it. This is my project.

Sorry, I have sent you a new email. Please check it again.

Hi liangshiwei,

I have sent you an email, please check and assist me. Thanks.

What if the data exceeds int.MaxValue?

[ExposeServices(typeof(IAuditLogsAppService))] 
public class MyAuditLogsAppService : AuditLogsAppService 
{ 
    public MyAuditLogsAppService(IAuditLogRepository auditLogRepository, IJsonSerializer jsonSerializer, IPermissionChecker permissionChecker, IPermissionDefinitionManager permissionDefinitionManager) : base(auditLogRepository, jsonSerializer, permissionChecker, permissionDefinitionManager) 
    { 
    } 
} 

Can you help me write the GetEntityChangesAsync(GetEntityChangesDto input) method without being limited by MaxResultCount?

public override void ConfigureServices(ServiceConfigurationContext context)  
{  
    LimitedResultRequestDto.MaxMaxResultCount = int.MaxValue;  
    ExtensibleLimitedResultRequestDto.MaxMaxResultCount = int.MaxValue;  
}  
  

Thanks for the support, but if I don't use this configuration, can you help me rewrite the 'GetEntityChanges' method without using pagination and without limiting the number of results?

and I would like to be able to retrieve more than 1000 records because the current MaxResultCount limit is 1000.

You can try:

public override void ConfigureServices(ServiceConfigurationContext context) 
{ 
    ExtensibleLimitedResultRequestDto.MaxMaxResultCount = int.MaxValue; 
} 
 

Thank you very much.

Could you please clarify if it is possible to filter data when retrieving a list of EntityChanges using ExtraProperties? I would like to retrieve a list of data where ScreenUrl in ExtraProperties is equal to the URL of the currently opened page. Additionally, I need to filter multiple EntityIds within the same page. How can this be achieved? Could you provide me with some suggestions?

Showing 31 to 40 of 48 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 20, 2024, 13:06