I want to completely disable model validation for WebAPI controllers. I tried a few ways to do it for MVC, but seems WebAPI doesn't get that methods.
In my case:
- custom formatter creates and populates object
- default validation happens
- Object passed to controller
- My code start working
I'm trying to completely remove step 2.