优势数据库 ORM 工具或代码生成器工具
有谁知道是否有任何适用于 Advantage 数据库的 ORM 工具或代码生成工具?
Does anyone know if there are any ORM tools or Code Generation tools that work against an Advantage Database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
了解您使用的开发环境会很有帮助。
对于 .net:
Microsoft Entity.NET Framework
Telerik
开发者快车 (表达持久对象)
对于 Delphi:
我相信 REM 对象也有一个可以与 Advantage 配合使用的框架。
It would be helpful to know what development environment you use.
For .net:
Microsoft Entity.NET Framework
Telerik
Developer Express (Express Persistent Objects)
For Delphi:
I believe REM Objects has a framework that works with Advantage too.
可能是的,但是您需要编写一个
NHibernate.Driver.IDriver
实现。别担心,这很容易。您可以从 https 中的任何最简单的开始://nhibernate.svn.sourceforge.net/svnroot/nhibernate/trunk/nhibernate/src/NHibernate/Driver/
另外,您应该编写一个
NHibernate.Dialect.Dialect
实现,或者您只能使用GenericDialect
提供的基本功能。Probably yes, but you'll need to write a
NHibernate.Driver.IDriver
implementation.Don't worry, it's easy. You can start from any of the most simple ones at https://nhibernate.svn.sourceforge.net/svnroot/nhibernate/trunk/nhibernate/src/NHibernate/Driver/
Also, you should write a
NHibernate.Dialect.Dialect
implementation, or you'll only be able to use the basic functionality provided byGenericDialect
.有人发布了Advantage Database NHibernate dialect/driver 的 C# 源代码 前往 nhibernate-development google group;您应该能够将其与任何当前的 ADS ADO.NET 提供程序一起使用。
但是,您应该注意 NH-3078“使用 Sybase Advantage 数据库时出现 TimeAsTimeSpanType 问题” ,目前看来还没有修复。
Somebody posted C# source for an Advantage Database NHibernate dialect/driver to the nhibernate-development google group; you should be able to use this with any current ADS ADO.NET provider.
However, you should take note of NH-3078 "TimeAsTimeSpanType issue when using Sybase Advantage Database", which doesn't seem to be fixed yet as of now.