是否有一个基本模板可以用来从 MyGeneration 的 Db 创建 POCO?
在从 Db 模式创建 POCOS 时,与 MyGeneration 共同使用的主要代码模板是什么?
基本上我想要没有任何行为的课程;只是属性(根据 Db 中的关联正确定义的集合)。
谢谢!
What is the main code template used in common with MyGeneration when it comes to creating POCOS from a Db schema?
Basically I want to have classes without any behavior; just properties (collections properly defined based on the associations in Db).
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
修改 dOODads 实体模板以生成类并不困难。开箱即用,它已经非常正确,只需生成一个简单的类即可。有一些自定义行为,但所需的任何调整都非常小。
生成相关的集合/对象将是唯一需要的重要工作。 MyGeneration 模板库中有示例展示收集相关对象。
It wouldn't be hard to modify the dOODads entity template to just generate the classes. Out of the box it's already pretty much right, just generating a simple class. There is some custom behaviour but any tweaks required would be pretty minor.
Generating the related collections/objects would be the only significant work required. There are samples in the MyGeneration Template library that demonstrate collecting related objects.
您可以使用 CodeSmith Generator 来使用 .netTiers 应用程序框架。这将使用表创建域对象。它可以创建 DAL 等等。
You can use .netTiers application framework using CodeSmith Generator. This creates domain objects using the tables. It can create DAL's and much more.