My viewmodel contains a list of strings:
public class SupplierViewModel { public Supplier Supplier { get; set; } public List Numbers; }
Numbers is a field and the DefaultModelBinder cannot set the value of a field. You need to make it a property by adding getters/setters
Numbers
DefaultModelBinder
public List Numbers { get; set; }