I'm trying to do a redirect to action with a querystring array:
string[] variantIds = new {
"test1",
"test2",
};
return RedirectToAction("SamplesOrderStep3", new { variantIds });
But this redirects to
sample-order-step3?variantIds=System.String%5B%5D
How do I get it to go to
sample-order-step3?variantIds=test1&variantIds=test2