我正在尝试在我的 MVC 3 Web 应用程序“此应用程序是普通的 MVC 3 应用程序而不是 DevExpress MVC 3 应用程序”中使用 DevExpress 报告,使用以下教程添加 XtraReports http://documentation.devexpress.com/#XtraReports/CustomDocument9974
问题是每次我尝试添加
@Html.DevExpress().ReportToolbar(settings => {
// The following settings are necessary for a Report Toolbar.
settings.Name = "ReportToolbar";
settings.ReportViewerName = "reportViewer1";
}).GetHtml()
DevExpress() 给我一个错误
“System.Web.Mvc.HtmlHelper”不包含“DevExpress”的定义,并且找不到接受“System.Web.Mvc.HtmlHelper”类型的第一个参数的扩展方法“DevExpress”(您是否缺少 using 指令还是汇编参考?)
有什么建议么?!