我正在玩ASP.NET MVC5和RavenDB。我想使用Raven的异步API,但在我的生活中无法使用它。
我的控制器(由于数据库中没有数据,实际查询结果是伪造的)
public class BooksController : Controller
{
public async Task<ActionResult> IndexAsync()
{
var books = this.documentSession.Query<Book>();
Book book = await books.FirstOrDefaultAsync() ??
new Book { Title = "Programming WCF service", ASIN = "B0043D2DUK" };
return this.View(book);
}
}
视图IndexAsync.cshtml
@using Hydra.FubuConventions
@model Hydra.Models.Book
@{
ViewBag.Title = "Books Asynchronous";
}
<h2>Books Asynchronous</h2>
@Html.FormBlock(x => x.Title)
@Html.FormBlock(x => x.ASIN)
Web.config
<configuration>
<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
</appSettings>
<system.web>
<customErrors mode="On" defaultRedirect="Error.html"/>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
</system.web>
</configuration>
当我使用同步控制器方法将其与模型一起提供时,它完全正常。但是使用异步方法它只显示
System.Threading.Tasks.Task
1 [System.Web.Mvc.ActionResult]`
我在stackoverflow上发现了很多帖子,表明MVC的旧版本可能是问题所在。但我检查了我的输出文件夹中的MVC dll版本(System.Web.Helpers v3.0.11001.0,System.Web.Mvc v5.0.11001.0和System.Web.WebPages v3.0.11001.0)是对的。
我缺少什么想法?
更新
我比较了加载的程序集列表。除了仅在其中一个项目中加载的程序集明显不同之外,它们是匹配的。 web.config是完全相同的。我用我在新项目中使用的相同测试存根替换了对RavenDB的调用。仍然得到类型名称而不是视图。
答案 0 :(得分:3)
如果您使用自定义ControllerActionInvoker,则必须从AsyncControllerActionInvoker
继承它。
答案 1 :(得分:1)
您必须在httpRuntime.targetFramework
中将.NET 4.5 和设置为4.5
。
答案 2 :(得分:0)
您的web.config
缺少在新MVC项目中找到的程序集重定向指令。我怀疑较旧的MVC程序集已安装在GAC中,并被您的应用程序选中。
在任何情况下,行为都是典型的版本不匹配。您需要通过比较项目与新的,干净的MVC 5项目之间的差异来找到加载旧程序集的原因。
在新的MVC 5.2项目中,Web配置中的<runtime>
部分包含这些程序集重定向:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-5.2.0.0" newVersion="5.2.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
</dependentAssembly>
</assemblyBinding>
</runtime>
您应该将干净项目中的重定向复制到旧项目中,看看是否能解决问题