ELMAH 设置 - 类型或命名空间名称“Linq”命名空间 System 中不存在

发布于 2024-08-04 08:16:00 字数 124 浏览 1 评论 0原文

我已下载最新的 ELMAH 并将示例应用程序的 Web.Config 设置复制到我的 ASP.NET 3.5 Web.Config。

我已确保引用 DLL 的 3.5 发行版本,但我仍然收到上述错误(根据本文的标题)。

I have downloaded the latest ELMAH and copied the sample app's Web.Config settings to my ASP.NET 3.5 Web.Config.

I have made sure to reference the 3.5 release version of the DLL, but I am still getting the above error (as per the title of this post).

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

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

发布评论

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

评论(2

安穩 2024-08-11 08:16:00

如果您有引用,请确认 web.config 中的程序集字典中有一个条目,其中包含包含 Linq 的 dll。例如:

<add assembly="System.Web.Extensions, Version=3.5.0.0, ...
<add assembly="System.Xml.Linq, Version=3.5.0.0, ...

If you have the reference then confirm you have an entry in your assemblies dictionary from the web.config that has the dll that contains Linq. For example:

<add assembly="System.Web.Extensions, Version=3.5.0.0, ...
<add assembly="System.Xml.Linq, Version=3.5.0.0, ...
掩于岁月 2024-08-11 08:16:00

LINQ dll 不会自动添加到 Web 项目中,您必须在解决方案资源管理器中手动将其添加到项目引用中。

The LINQ dll is not automatically added to a web project, you have to add it manually in the solution explorer to the project references.

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