'IHtmlHelper dynamic' has no applicable method named 'PartialAsync'


Question: How do you resolve "Severity Code Description Project File Line Suppression State
Error CS1973 'IHtmlHelper<dynamic>' has no applicable method named 'PartialAsync' but appears to have an extension method by that name. Extension methods cannot be dynamically dispatched. Consider casting the dynamic arguments or calling the extension method without the extension method syntax. File Path.".


Login to See the Rest of the Answer

Answer:
There is a chance you are calling a Partial using an Async Function, Partials in Asp.Net 6 are already optimized for performance there is no need to call an awaiter, the underlying Partial API will call this a corresponding Partial file accordingly.

In order to resolve this error just use the code below:
<partial name="Path/_FileName" />

Do not use the code below:
@await Html.PartialAsync("Path/_FileName", data).ConfigureAwait(false)


.Net 7
published
v.0.01




© 2024 - ErnesTech - Privacy
E-Commerce Return Policy