我已经通过nuget在MVC4应用程序中安装了servicestack MVC并尝试启用迷你探查器。
我按照Global.asax中的以下说明完成了:
protected void Application_BeginRequest(object src, EventArgs e)
{
if (Request.IsLocal)
ServiceStack.MiniProfiler.Profiler.Start();
}
protected void Application_EndRequest(object src, EventArgs e)
{
ServiceStack.MiniProfiler.Profiler.Stop();
}
我在布局页面中放置了@ ServiceStack.MiniProfiler.Profiler.RenderIncludes()。AsRaw()。但是,此参考中不存在此方法。我只能看到“ToHtmlString()”& “@ ServiceStack.MiniProfiler.Profiler.RenderIncludes()”中的“ToString()”表示html被转义。是否在MVC4中删除了“AsRaw()”方法?
答案 0 :(得分:4)
T.AsRaw()
是ServiceStack.Html.HtmlExtensions.AsRaw中的扩展方法,因此您基本上需要包含 ServiceStack.Html 命名空间。