I have post request that contains the key "Items[]" with a value like "2,3,12".
I have a controller method that uses the following input model.
public class InputModel
{
public int[] Items { get; set; }
}
Currently "Items" never get set.
Am I doing something wrong (wrong type in my input model, missing an attribute etc) or is there no built-in functionality for this kind of binding?