Hi,
I have a use case to bind query string to a model in Azure function V3 and in that, say, one of the query string will have array values. It is a .net core function app.
For eg: <url>?item=laptop&places=Bangalore&places=Chennai&places=Mumbai
This should be bound to a model like:
public class Items{
public string item { get; set; }
public List<string> places { get; set; }
}
Tried using FromQuery which doesn't seems to be supported in Azure function.
Could you please suggest?