I have 2 tables, Person and Nationality. Person has an FK to the Nationality table via NationalityID. In my Create Person form, I've got a dropdown that's populated with NationalityID and NationalityDescription. What's the best way to validate this dropdown to deal with people using developer toolbars etc to change the posted value to an invalid NationalityID? I've been looking at using System.DataAnnotations.AssociationAttribute in a viewmodel but I'm not sure if this is quite what I need.
|
feedback
|
|
This kind of validation should be performed by the business layer. For example:
| |||
|
feedback
|