Check the docs before asking a question: https://abp.io/docs/latest
Check the samples to see the basic tasks: https://abp.io/docs/latest/samples
The exact solution to your question may have been answered before, and please first use the search on the homepage.
Provide us with the following info:
🧐 Hint: If you are using the ABP Studio, you can see all the information about your solution from the configuration window, which opens when you right-click on the solution and click on the Solution Configuration
button.
- ABP Framework version: v8.2.1
- UI Type: Angular
- Database System: EF Core (SQL Server)
- Tiered (for MVC) or Auth Server Separated (for Angular): yes
- Exception message and full stack trace:
- Steps to reproduce the issue:
- Having controller parameter type IFormCollection:
- generate proxy: abp generate-proxy -t ng
- result will be:
- which is: any<string, StringValues>
- and as a result we'll have compilation errors
- Suggestion: generate just as any and everything will be fine.
3 Answer(s)
-
0
hi
Please don't use
IFormCollection
as the controller and Application service's parameter.You can use a DTO to bind the form parameters.
-
0
Hi,
I am forced to use it, because of third-party libraries that I need. It's not a big problem of course. I am just removing the <string, StringValues>. It was just a suggestion to generate IFormCollection as any.
Cheers
-
0
: )