是否有类似于 ProvidersHelper 但不适用于 Web 的类?

发布于 2024-07-24 10:02:09 字数 457 浏览 9 评论 0原文

是否有类似于 ProvidersHelper 但不适用于 Web 的类? 我想实例化一组提供者。 实际上我正在使用 CodeSmith & Nettiers,数据库提供商是Oracle。 它生成了一个要添加到 app.config 的提供程序部分,我不知道为什么它使用 System.Web.Configuration 类,也不知道为什么在这部分它说 SQLClient 而不是 OracleClient。

我收到的错误是:

“System.Web.dll 中发生了类型为‘System.Configuration.ConfigurationErrorsException’的未处理异常

附加信息:无法加载文件或程序集‘LLPA.Data.OracleClient’或其依赖项之一。系统找不到指定的文件。 ”

任何想法或解决方案表示赞赏。

Is there any class similar to ProvidersHelper but not for web?
I want to instantiate a collection of providers. Actually I'm using CodeSmith & Nettiers, and the db provider is Oracle. It generated a provider section to be added at app.config, and i dont know why it uses System.Web.Configuration classes or why at this section it says SQLClient instead of OracleClient.

The error that I'm getting is:

"An unhandled exception of type 'System.Configuration.ConfigurationErrorsException' occurred in System.Web.dll

Additional information: Could not load file or assembly 'LLPA.Data.OracleClient' or one of its dependencies. The system cannot find the file specified."

Any idea or solution is appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

九公里浅绿 2024-07-31 10:02:09

如果它涉及 SQL Server 而您使用的是 Oracle,则可能是一个错误。 我建议在 .netTiers 问题跟踪器上记录错误。 我建议查看正在构建的所有 LLPA.Data.OracleClient 项目引用,并确保它们位于已编译应用程序的 bin 目录中。

It is probably a bug if it refers to SQL Server and you are using Oracle. I'd recommend logging a bug on the .netTiers issue tracker. I'd recommend taking a look at all of the LLPA.Data.OracleClient project references are being built and ensure that they are in your bin directory of your compiled application.

抚笙 2024-07-31 10:02:09

检查 DLL LLPA.Data.OracleClient 是否位于 bin 文件夹或 GAC 中。 如果这不起作用,请考虑使用 Fuslogvw.exe

Check the DLL LLPA.Data.OracleClient is in the bin folder or the GAC. If that doesn't work look into using Fuslogvw.exe.

无语# 2024-07-31 10:02:09

我没有将 LLPA.Data.OracleClient 的引用添加到我的应用程序中,这就是它找不到它的原因。

I hadn't had added the reference of LLPA.Data.OracleClient to my application, that's why it couldn't find it.

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