如题 有没有人知道相应的解决方案
MvcPatch太坑爹了,居然是自己写了个System.Web.Mvc
用ViewData或TempData吧
[OutputCache(VaryByParam = "none", Duration = 300)]public ActionResult Rss(){ var feed = _syndicationService.FetchNewsFeed(); return new RssResult {Feed = feed};}