How to bind json data to FromBody Dto in ASP.NET Core Web API?
In my ASP.NET Core Web API, when I call a method that is a HttpPost and receives a DTO object in FromBody, and sends extra fields that are not in SourceUrlDto, I fail during binding on the code side. How…