My model has an async method which I would like to invoke from within a view, i.e. something like this:
@Ajax.ActionLink(await Model.GetCaptionAsync(), ...
The VS 2015 IDE however complains that await can only be used from within an async method.
Is there a reasonable way to invoke an async mehthod from within a view (i.e. not using .Result but keeping the async flow)?