Starcounter makes it easy to use computed properties in the data model. Computing values on the fly is often as fast as accessing cached data and brings additional benefits. It allows you to save memory and always be sure that you get the current value.
Let us compute the FullName of a person from their FirstName and LastName and display it with minimal delay.
Preparing the View-Model
To synchronize the computed property between view and code-behind, simply add the FullName property to the view-model.