-
ABP Framework version: v9.0.4
-
UI Type: Blazor WASM
-
Database System: EF Core (SQL Server)
Hi,
I'm having issues generating the static clients using the ABP CLI command.
I have the following AppService interface with its implementation, as well as a base AppService.
Base appservice and methods:
Here is the structure of the DTOs, filters:
This is what the CLI generates with the following command:
abp generate-proxy -t csharp -u https://localhost:44393/ --without-contracts
Finally, I'm adding the app-generate-proxy.json file:
And HttpApi.Client references:
Thank you.
3 Answer(s)
-
0
Hi again,
I partially fixed the parameters error with [FromBody] in AppServiceBase Method
But the response Dto and the implementation still not work:
-
0
Hi,
Client proxy does not support the synchronization method, you should always use asynchronous methods as a best practice
-
0
Hi,
My bad, the name convention needed the word Async at the end of function names to work.
Thanks for the support