LINQ 到 NETEZZA
有谁知道是否可以使用 LINQ 查询 NETEZZA 后端?
更新:我尝试过 ODBC 和 OLEDB Netezza 驱动程序,但都不起作用。两者都会给出“所选对象使用不受支持的数据源”错误。
Does anyone know if it is possible to use LINQ to query a NETEZZA back-end?
Update: I've tried both the ODBC and OLEDB Netezza drivers, but neither work. Both give a "The selected object(s) use an unsupported data source" error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们已经找到了一种方法来做到这一点——有点。
我们在 DBML 文件中创建了一个自定义数据类,它反映了存储过程的结构。然后,我们使用 Netezza 上的存储过程(通过表适配器和 Netezza OLE DB 驱动程序执行)来归档该类。
我们的 DAL(数据访问层)几乎只是将 DBML 中的类公开给 BLL(业务逻辑层),因此数据类的外观和行为与任何其他 LINQ 类相同。
我们无法进行更新,但这在这种情况下并不重要。
We've figured out a way to do this - kinda.
We've created a custom Data Class in the DBML file that reflects the structure of the stored procedure. We then use a stored procedure on Netezza (executed via a table adapter and the Netezza OLE DB driver) to file the class.
Our DAL (data access layer) pretty much just exposes the classes in the DBML to the BLL (business logic layer), so the data class looks and behaves the same as any other LINQ class.
We can't do updates, but that's not important in this instance.