为什么我在定义自定义配置文件时收到 TypeLoadException?
我正在编写一个 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,您需要在
app.config
文件中更加具体。 而不是编写此内容您需要指定应用程序(或程序集)的名称,
It turns out that you need to be more specific in the
app.config
file. Instead of writing thisyou need to specify the name of your application (or assembly)