Is there an alternative for [Bind(Exclude = \"Id\")] (Related Question) ?
[Bind(Exclude = \"Id\")]
Could I write a model binder?
A very simple solution that I figured out.
public ActionResult Edit(Person person) { ModelState.Remove("Id"); // This will remove the key if (ModelState.IsValid) { //Save Changes; } } }