You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some views use @Html.Partial("BreadCrumbsView", Model) and because the binding is dynamic errors are produced. The use of Model is pointless and the lines where Model is passed can be written like so @Html.Partial("BreadCrumbsView").
Nope but if code is copied from one of the views to a custom view without a model specified it can cause issues which can be avoided by either specifying a model or removing the model from the call.
Some views use
@Html.Partial("BreadCrumbsView", Model)
and because the binding is dynamic errors are produced. The use of Model is pointless and the lines where Model is passed can be written like so@Html.Partial("BreadCrumbsView")
.The following is the same issue I encountered:
https://stackoverflow.com/questions/28465114/system-web-mvc-htmlhelper-has-no-applicable-method-named-partial
I will create a PR to fix this.
The text was updated successfully, but these errors were encountered: