Partially filled object appears completely null at controller after ajax post – Jquery ajax
I am trying to send a partially filled object to my controller through an Ajax post. var child = { Property1: 1, Property2: 'test', }; $.ajax({ url: '/MyController/AddNewTest', type: 'POST', data: {"MyObject": child}, success: function (data) { //Do stuff },…