构建时自动更改 Visual Studio 源代码(更新 DBML 等)
每次我通过 DBML 重建时,我都必须调整各个字段的自动生成值等设置。
是否有内置工具可用于在构建时自动执行 DBML 中的更改?我正在使用 Visual Studio 2008。
Every time I rebuild by DBML, I have to adjust settings for auto generated value etc. for individual fields.
Is there a built-in tool which I could use to automate my changes in the DBML when I build? I'm using Visual Studio 2008.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有发现任何内置的东西。我只是使用 T4 模板来读取构建时的数据库并使用新列和数据类型更改更新 DBML 文件 - 没有其他。这样,一旦将表放入 DBML 文件中,您就无需担心丢失自定义设置。这很痛苦,但却是一个简单可行的解决方案。尽管我很想知道是否有人有更好的(并且免费的)想法。
I've not found anything built-in. I just use a T4 template that reads my database on builds and updates the DBML file with new columns and datatype changes - nothing else. That way, once a table is place on the DBML file, you never need to worry about losing your customizations. It's a pain, but a simple workable solution. Though I'd love to know if someone has a better (and free-as-in-$$$) idea.