如何为我的实体创建自定义验证
我想知道是否可以为我的用户实体创建自定义验证。
我想验证用户名是否唯一。 如果用户已经存在,我不想保存它并显示警告。
我读过有关数据注释继承的内容,但我不确定我在做什么。
请帮忙。
谢谢。
实体框架 4
ASP.NET MVC 2
I would like to know if this is possible to create a custom validation for my User Entity.
I Want to verify if the username is unique.
If the user Already exist, I don't want to save it and show a warning.
I Read about Data Annotation inherits but I'm not sure of what I'm doing.
Please help.
Thanks.
Entity-Framework 4
Asp.net MVC 2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的,您可以创建自己的自定义属性类并验证实体。与此代码类似的内容,
还有更多关于 CustomeAttribute
Yes it is possible, you can create your own Custom Attribute class and validate the entity. Something similar to this code,
Also more on CustomeAttribute