I want to do this, but I want to also be able to pass in arrays into the query string. I\'ve tried things like:
http://www.sitename.com/route?arr[]=this&
I found two problems in your question:
arr while you Contrller's Action has values.ModelBinder can work as expected. Like this:public void DoSomething([FromQuery(Name = "values")] string[] values)
After doing that, everything should work as expected.