使用 Linq-to-SQL 时向模型类添加验证注释器
How should I add the following attrubute
[Required(ErrorMessage="...")]
to one of the model properties when my model classes are automatically generated.
There is a solution here, but it seems to be working only on Entity Framework
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
相同的解决方案也适用于 LINQ to SQL。本文显示的使用
MetadataType
的代码片段将与 LINQ to SQL 生成的类完美配合:The same solution can be applied for LINQ to SQL. The snippet the article shows for using the
MetadataType
will use perfectly well with LINQ to SQL generated classes: