如何验证从 ASP.NET MVC3 中的数据库填充的下拉列表?
我有 2 个表,“人员”和“国籍”。人员通过 NationalityID 拥有国籍表的 FK。在我的“创建人员”表单中,我有一个填充了 NationalityID 和 NationalityDescription 的下拉列表。验证此下拉列表以处理使用开发人员工具栏等将发布的值更改为无效 NationalityID 的人的最佳方法是什么? 我一直在考虑在视图模型中使用 System.DataAnnotations.AssociationAttribute 但我不确定这是否正是我所需要的。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这种验证应该由业务层执行。例如:
This kind of validation should be performed by the business layer. For example: