I'm trying to pass a javascript associative array to a controller.
I can pass normal arrays into a controller with this:
public JsonResult ProductsByFacets(List<string> facets)
but this won't work with associative arrays
I'm trying to pass a javascript associative array to a controller.
I can pass normal arrays into a controller with this:
public JsonResult ProductsByFacets(List<string> facets)
but this won't work with associative arrays