为什么我在定义自定义配置文件时收到 TypeLoadException?

发布于 2024-08-26 12:42:50 字数 345 浏览 4 评论 0原文

我正在编写一个 .NET 命令行应用程序,它将用户从现有数据库迁移到 aspnetdb。为了简化用户特定的设置,我使用 Joel Spolsky 编写的配置文件类 此处

它在 ASP.NET MVC 网站中运行良好,但由于某种原因,在这个新应用程序中使用它时会抛出 TypeLoadException 。我不确定为什么框架试图从 System.Web 加载新类。

I'm writing a .NET command-line application that will migrate users from an existing database into aspnetdb. To simplify the user-specific settings, I'm using the profile class that Joel Spolsky wrote about here.

It works great in the ASP.NET MVC website, but for some reason it's throwing a TypeLoadException when being used from this new application. I'm not sure why the framework is trying to load the new class from System.Web.

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

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

发布评论

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

评论(1

热风软妹 2024-09-02 12:42:50

事实证明,您需要在 app.config 文件中更加具体。 而不是编写此内容

<profile defaultProvider="SqlProvider" inherits="MigrationFromUDF.AccountProfile">

您需要指定应用程序(或程序集)的名称,

<profile defaultProvider="SqlProvider" inherits="MigrationFromUDF.AccountProfile, MigrationFromUDF">

It turns out that you need to be more specific in the app.config file. Instead of writing this

<profile defaultProvider="SqlProvider" inherits="MigrationFromUDF.AccountProfile">

you need to specify the name of your application (or assembly)

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