Please help,
I have a partial view in ASP.Net MVC 5, like this, and I need to use the same thing in ASP.Net Core:
@{Html.RenderAction("LogEntries", "LogEntries", new { entityFormalNamePlural = "PurchaseOrderHeader", entityKeyValue = Model.Id });}
This code is in a View in one of my Controller, and call the partial view using "LogEntries" controller with "LogEntroes" action.
How the similar code in ASP.Net Core?
Need help
Jannen Siahaan