In my service I want to throw a NotFound response. I do this with:
throw HttpError.NotFound($$"UVC {request.UVC} not found");
However, in PostMan I get the 404 http response, but I also get response DTO with some values defaulting to 0.
How can use this, without null as the response?