How to pass multiple values of a single HTTP request parameter, and retrieve them in the controller?
Whether it be a repeated parameter like so:
http://example.com/users?q=1&q=2
or multiple values in a row like that:
http://example.com/users?q=1,2
Thank you for your help.