When I try to render a partial view whose model type is specified as:
@model dynamic
by using the following code:
@{Html.Re
I was playing around with C# code an I accidentally found the solution to your problem haha
This is the code for the Principal view:
`@model dynamic
@Html.Partial("_Partial", Model as IDictionary)`
Then in the Partial view:
`@model dynamic
@if (Model != null) {
foreach (var item in Model)
{
@item.text
}
}`
It worked for me, I hope this will help you too!!