Async method call in Razor view

谁说我不能喝 提交于 2019-12-19 08:02:25

问题


I have @Html.Translate() extension method, which returns translated string. Translations are stored in database, so I want to make async call to database from helper method. Can I make async method calls from razor view? Is here some workaround to call async methods in razor view?


回答1:


Async method calls from razor view are supported (or will be supported) only in ASP.NET vNext (MVC 6).

If you are using MVC 5 version and eralier, the simplest solution to your problem would be adding a property to your view model and filling it with async call to db. So when your view is rendered all the data will already be in the model and ready for use.

P.S also calling a database from view sounds a little fishy. May be you should review this pattern.



来源:https://stackoverflow.com/questions/32436756/async-method-call-in-razor-view

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!