You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the solution you'd like
I would likt be able to define this behavior using the [Query] attribute.
Describe alternatives you've considered
I'Ve tried to use [Query.Multi] but using this requires me to change the API to split the values everytime because all types will be in Types[0]
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I have a class which holds two properties. One of them is an
IEnumerable<string>
.For example:
In my interface I have it like this:
The refit client now tries to fetch this URL:
This results in my API crashing because I expect the value to be send like in swagger. Which would be:
Describe the solution you'd like
I would likt be able to define this behavior using the
[Query]
attribute.Describe alternatives you've considered
I'Ve tried to use
[Query.Multi]
but using this requires me to change the API to split the values everytime because all types will be inTypes[0]
The text was updated successfully, but these errors were encountered: