ELMAH setup - The type or namespace name 'Linq' does not exist in the namespace System

StackOverflow https://stackoverflow.com/questions/1394033

  •  21-09-2019
  •  | 
  •  

Question

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).

Was it helpful?

Solution

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, ...

OTHER TIPS

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top