I have a controller method like that:
 public async Task<IEnumerable<MyModel>> GetLinks(IList<string> links)
        {
        }
Is there anyway I can pass the params to that controller method form url like so:
<endpoint>/getginks?links=http://link1&?links=http://link2 etc?
but for some reason I cant even pass a single param <endpoint>/getginks?links=http://link1 
In that case controller getting hit but links = null, I checked on debug.
is there anything I can do?