The callstack shows the following:
[MissingMethodException: No parameterless constructor defined for this object.] System.RuntimeTypeHandle.CreateInstance(Ru
I also have properties on my view model class that return SelectList instances. I decorated my class with the Bind attribute to exclude these properties like this:
[Bind(Exclude = "Countries")] public class MyViewModel { ...
public SelectList Countries { get; set; }
}
Hope that helps, Roger