MVVM pain points: Chained/Dependent/Calculated Properties
A common occurrence in MVVM development is having calculated properties on your ViewModel. Calculated properties are often put on the ViewModel in order to avoid putting that logic in the UI code, as well as provide convenient databinding. For example, … Continue reading