How do I figure out which of the keys in ModelState that contains an error when ModelState.IsValid is false? Usually I would just hover the mouse thru the ModelState.Values
ModelState.Values.SelectMany(v => v.Errors);
is considered cleaner.