I want to completely disable model validation for WebAPI controllers. I tried several ways to do this for MVC, but it seems like the WebAPI is not getting these methods.
In my case:
- Custom formatter creates and populates an object
- default check performed
- Object transferred to controller
- My code starts to work
I am trying to completely remove step 2.
source share