NET CORE 8 MVC, Is there anyway to read from a request body directly in an action without middleware?
I want to be able to read a request body in an action while still also using default MVC behavior, which involves posting with a [FromBody] parameter. As far as I know I need middleware to accomplish this. My action is: