✅ MVC Core: Model Properties Not Passing to Controller Method
I have a model that I'm trying to have passed back to a controller method, but its properties are appearing as null. The correct POST method is being hit.
I have listed out each property in the form to POST back via
Html.HiddenFor(x => x.PropertyName)
Html.HiddenFor(x => x.PropertyName)
as I have done in many places within this project. They are still coming back null. Any ideas as to what may be going on?