Suppose there is a model that was generated from the database. Code was written using this model.
At one point there is a need to change the name of the column in the database.
If I change the name of the column and perform an update from the database, then in effect a new property will appear.
As a result, the entity will have 2 properties: the property with the old name, and the property with the current name.
How do I refactor the code itself, so that where the old property was used, the new one would be used?