My endpoint is decorated like
[HttpGet("{data}")]
public async Task<MyObj> Get([FromQuery]List<string> data)
And I call this via
https:.........../api/Learning/one,other,hello
My data
list is empty and I do not understand what I need to change.
I assume I can pass a string array as a parameter to an HttpGet
endpoint?