3 Answer(s)
-
0
- The error message indicates that the Blazor client cannot find the remote action for your new entity's AppService (e.g.,
IQuizQuestionCategoriesAppService
). This usually means the backend API for the entity was not properly generated, registered, or exposed.
To resolve this:
Ensure the Application and HTTP API layers are built and referenced correctly:
- The Application.Contracts project should define the DTOs and service interfaces.
- The Application project should implement the AppService.
- The HttpApi project should expose the service via controllers.
Rebuild the solution and ensure all migrations are applied if you added new entities.
Check that your new AppService is decorated with the
[RemoteService]
attribute (or not explicitly disabled).Make sure the module dependencies are correct and the new module is added to your main module's
DependsOn
attribute.If you are using a microservice or modular solution, ensure the service is exposed in the correct host.
Remove and re-add the solution in ABP Suite to refresh its internal cache.
If you have a custom folder structure, align it with the default ABP template.
For more details and troubleshooting steps, see:
- https://abp.io/docs/latest/suite/generating-crud-page
- https://abp.io/support/questions/9600
This response was generated by AI. If it didn’t solve your problem, feel free to post a new answer — our support team will jump in to help you soon.
- The error message indicates that the Blazor client cannot find the remote action for your new entity's AppService (e.g.,
-
0
Yes, they looks correct. bot answer did not help me.
-
0
hi
Can you share a template project with your steps and share the code?
Thanks. liming.ma@volosoft.com
- Create new Entity from Suite.
- Login to Admin application
- Click on newly created entity menu.
- In console I am getting error around 1900 count. Please check attached image