I get an error when using razor helpers in an MVC 3 project (did put the cshtml file in app_code). Looks like the generated code is using a wrong assembly reference.

using WebMatrix.Data;
using WebMatrix.WebData;

Compiler says:

CS0246: The type or namespace name 'WebMatrix' could not be found (are you missing a using directive or an assembly reference?)

Putting them into GAC did not change anything. Am I not getting it? Or is this a bug? Any ideas?

link|improve this question

62% accept rate
feedback

4 Answers

up vote 5 down vote accepted

You need to add a reference to the DLL in Web.config.

link|improve this answer
correct! thx. why did I not consider it ... already too late? – mbr Nov 10 '10 at 16:27
BTW, if you're not using WebMatrix.Data and WebMatrix.WebData, then Marcin's answer will make it so that you do not need to include unncessary binaries. – Haacked Nov 15 '10 at 19:51
Thanx Phil ... keep up the great work u r doing. – mbr Nov 26 '10 at 7:45
feedback

mbr, we are aware of the issue and plan on addressing it for RTM. You could either add references to the WebMatrix assemblies like SLaks suggested or (and I think this is better) simply add those 2 namespaces to your project by adding the following code:

namespace WebMatrix.Data { internal class Ignore { } }
namespace WebMatrix.WebData { internal class Ignore { } }
link|improve this answer
thanks marcind. – mbr Nov 11 '10 at 13:12
1  
"CS1527: Elements defined in a namespace cannot be explicitly declared as private, protected, or protected internal." Leave the "private" off those class declarations and it works fine. – Jason Jackson Nov 12 '10 at 21:47
Ah, even better. I like it now. – Jason Jackson Nov 18 '10 at 18:38
feedback

I ran into this problem, and was helped by this answer. And then I ran into another problem when I started trying to use Telerik, this answer: Razor (MVC 3 RC) HtmlHelper Extensions Not Found pointed me towards another solution for this problem.

link|improve this answer
feedback

Put the code in a file (I chose Fixup.cs) like so in the App_Code directory:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace WebMatrix.Data { internal class Ignore { } }
namespace WebMatrix.WebData { internal class Ignore { } }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.