为实体框架自动生成元数据类
我正在考虑使用 xVal 来验证 MVC 应用程序中的实体框架类。这涉及编写元数据类,如 Graham O'Neale 详细解释的那样 (http://goneale.com/2009/03/04/using-metadatatype-attribute-with-aspnet-mvc-xval-validation-framework)。
我想知道是否有一种方法可以使用 SQL 数据库中的元数据自动生成此类元数据类(例如:非空字段将具有 [Required] 类属性。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以使用Code Smith工具www.codesmithtools.com(如果我没记错的话有一个免费版本)
You could use Code Smith tool www.codesmithtools.com (there is a free version if I remember correctly)
我编写了一个应用程序,它将读取现有数据库,然后为每个表(不包括 aspnet_* 和 VersionInfo)生成数据注释类。
http://pfsolutions-mi.com/Product/MetaDataClassGenerator
I wrote an application that will read an existing database and then generate a Data Annotation Class for every table (excluding aspnet_* and VersionInfo).
http://pfsolutions-mi.com/Product/MetaDataClassGenerator
在 EF 4 中,您可以通过 T4 模板轻松自定义代码生成。
In EF 4, you can easily customize the code generation via a T4 template.