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?