I'm working on asp.net core webAPi and EF core, and want to implement "update" operation (partially edit entity).
I searched the correct way to deal with that, and saw that I should use jsonPatch. the problem is that I'm expose just DTOs through my API, a...