Subsonic 和 VB.net 2005 互操作工具包

发布于 2024-08-10 21:41:37 字数 206 浏览 3 评论 0原文

我有一个应用程序要从 vb6 转换为 vb.net 2.0/3.5。使用 Subsonic 2.2 和 vb.net Interop Toolkit 2005。似乎无法使用 subsonic 获得 .net 表单以在互操作环境中工作。它一直说在app.config中找不到亚音速服务提供商。但我知道它就在那里。有人成功地同时使用过这两个工具包吗?亚音速是否会以这种方式在互操作环境中工作?提前致谢!

I have an application I am converting over from vb6 to vb.net 2.0/3.5. Using Subsonic 2.2 and the vb.net Interop Toolkit 2005. Cannot seem to get the .net form using subsonic to work inside the interop environment. It keeps saying it cannot find the subsonic service provider in the app.config. But I know it is there. Has anyone used these two toolkits together successfully? Will subsonic even work inside the interop environment in that way? Thanks in advance!

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

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

发布评论

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

评论(1

感性 2024-08-17 21:41:37

需要在应用程序使用的任何主配置文件(可能不是 web.config)中声明提供程序。此外,将 SubSonicService 设为 configSections 中的第一个元素可能会有所帮助。

<configuration>
    <configSections>
        <section name="SubSonicService" type="SubSonic.SubSonicSection, SubSonic" allowDefinition="MachineToApplication" restartOnExternalChanges="true" requirePermission="false"/>
    </configSections>
<!--Other stuff-->
</configuration>

The provider needs to be declared in whatever primary configuration file is being used by application (may not be web.config). Also, it may help to make SubSonicService the first element in configSections.

<configuration>
    <configSections>
        <section name="SubSonicService" type="SubSonic.SubSonicSection, SubSonic" allowDefinition="MachineToApplication" restartOnExternalChanges="true" requirePermission="false"/>
    </configSections>
<!--Other stuff-->
</configuration>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文