How to use HttpPatch in Asp.Net Core


We typically use HttpPut to edit information. In this case, we have to send all the fields related to the entity. But if only one or two fields need to be edited, what is the need to send the rest of the fields? Using HttpPatch we can only send the fields ....
Read more