in asp.net core 3 the returned json will get automatically transformed to camelCase, and I know how to turn this off globally but how do I turn this off for one single action ? I know it was supposed to be something like
return Json(myObj, cfgHere);
but can't find this example anywhere