I have a form with a select box on it.
The linq entity has a selectList as a public property on it.
I'm currently excluding it from the entity like this
[Bind(Exclude = "taskDeadlineTime")]
I now want to add a second drop down, and I'm getting this error when I try to UpdateModel()
No parameterless constructor defined for this object.
Is it right that I should be adding this new property to the bind exclude list?
If so how do I add more than one property to the list?