I want to load an entity from the and set only one property and Update it in the Db but only by updating the property I have changed.
How can I achieve that?
var goodFood = Repository.FoodRepository.GetByID(100);
good.Food.SaltLevel = Salt.NoSalt;
// Now how to SAve it back without touching any other fields
//and only updating the SaltLevel field?