LINQ 到 NETEZZA

发布于 2024-08-25 10:33:15 字数 130 浏览 7 评论 0原文

有谁知道是否可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月流歌 2024-09-01 10:33:15

我们已经找到了一种方法来做到这一点——有点。

我们在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文