this my update endpoint, I want to do something before performing the update, so how I can detect which properties will update or which properties from request body?
public override async Task<IActionResult> Put([FromBody] CategoryTree update)
{
// check which properties update
return await base.Update(update);
}