是否有任何适用于数据库模式的 O/RM 或 ERD 工具?
我正在寻找一个 O/RM 或 ERD 工具,它将考虑模式并为它们创建命名空间。我有一个设计有多个模式的数据库。我有多个表具有相同的表名,但处于不同的架构中。例如 Statuses.Contact、Contacts.Contact 和 Types.Contact。我想要一些能够从模式中创建名称空间,然后从表中创建对象/实体的东西。
那里有这样的东西吗?
我正在使用 SQL Server 2005,并且希望使用 C# 生成的类。
谢谢。
I'm looking for an O/RM or ERD tool that will take schemas into account and create namespaces for them. I have a database designed with multiple schemas. I have multiple tables with the same table name, but in different schemas. e.g. Statuses.Contact, Contacts.Contact and Types.Contact. I would like something that would create namespaces out of the schemas and then objects/entities out of the tables.
Is there anything like this out there?
I am using SQL Server 2005 and would like the classes generated in C#.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议尝试实体框架或 Linq-to-SQL。我认为两者都会提供该功能,并且两者都可以从 Microsoft 获得。
I suggest trying Entity Framework or Linq-to-SQL. I would think that both would provide that functionality, and both are available from Microsoft.