从数据库自动生成获取和设置
我来自 VB6,我开始将现有的 VB6 代码转换为 VB.Net。 我可以使用哪些工具来自动执行此任务?
I am coming from VB6 and I am starting to convert an existing VB6 code to VB.Net. What tools can I use to automate this task?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在为数据访问层和实体寻找完整的代码生成器,LLBLGen 是一个好工具。 如果您只想寻找一个简单生成实体类的工具Wilson OR Mapper是我的最爱。
还有 CodeSmith 和 .net Tiers Templates 非常强大。
If you're looking for a complete code generator for your data access layer and entities LLBLGen is a good tool. If you only looking for a tool that simply generates entity classes Wilson OR Mapper is my favorite.
Also CodeSmith and .net Tiers Templates are very powerful.
我可能会考虑使用像 nHibernate、LINQ to SQL、Entity Framework、Subsonic 等 OR/M。它会给你带来更多的好处,但它可能比自动生成 CRUD 操作更好。
I would probably look into using an OR/M like nHibernate, LINQ to SQL, Entity Framework, Subsonic etc. It'll give you a lot lot more, but it's probably better than to autogenerate CRUD operations.