Jquery ajax – ASP Net Core AJAX Post Sending NULL to Controller
I'm trying to post data to a controller in ASP.NET Core I receive null in the controller. I can't get any data POSTed to an endpoint. In the action [HttpPost] public ActionResult AddEarningg([FromBody] ProgramAddDTO program) { //_ProgramAppService.AddEarning(program); ViewData["tenantlist"] = ListItems();…