在 MVC 3 中使用数据库进行数据注释的自定义错误消息
我正在尝试为数据注释实现一个自定义类,用于从数据库检索错误消息。数据库部分全部使用 EF 和 LINQ 返回消息来完成。
[Required(ErrorMessageResourceType=typeof(MyTestClass), ErrorMessageResourceName="Required")]
我的类需要返回什么才能正常工作?使用资源文件,但我确实需要将其放入数据库中。它应该适用于 StringLength 和其他验证属性。
我真的被这个问题困扰了,所以我希望有一些代码来解决这个问题。
/拉塞
I'm trying to implement a custom class for dataannotations that retrieves error messages from a database. The database part is all done using EF and LINQ to return the messages.
[Required(ErrorMessageResourceType=typeof(MyTestClass), ErrorMessageResourceName="Required")]
What does my class need to return for it to work? Works with resource-file, but I really need to put it in database. And it should work for StringLength and other validation attributes.
I'm really stuck on this one, so I'd appreciate some code to solve this issue.
/Lasse
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://blog.gauffin.org/2010/11/simplified-数据注释本地化/
http://blog.gauffin.org/2010/11/simplified-localization-for-dataannotations/