将 XML 注释添加到 LINQ to SQL 设计器生成的类属性
我使用 Visual Studio 中的 LINQ to SQL 设计器来创建数据库的对象模型。 现在,我想向每个生成的属性添加 XML 注释,但我不知道如何在下次刷新 dbml 文件时不删除属性的情况下执行此操作。
如何才能做到这一点?
I used the LINQ to SQL designer in Visual Studio to create an object model of a database. Now, I want to add XML comments to each generated property but I can't figure out how to do it without erasing the properties the next time the dbml file is refreshed.
How can this be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信自动生成的代码与 xml 注释保持同步是不可能的。 但是,XML 注释可以保留在单独的文件中(只需在“项目属性”->“构建”选项卡上设置“XML 文档文件”选项)。 您可以创建 XML 文档文件的初始版本,并在必要时手动更新
I believe it's not possible to keep xml comments in sync with autogenerated code automatically. However, xml comments can leave in separate file (just set "XML documentation file" option on "Project properties"->"Build" tab). You can create initial version of XML documentation file and update in manually if necessary
这个工具可以做到:http://www.huagati.com/dbmltools/
This tool can do it: http://www.huagati.com/dbmltools/