OnChangedInvokeMethodAttribute?
yangf85 opened this issue · comments
If SearchValue is an ObservableProperty, you can do:
[ObservableProperty]
private string? searchValue;
partial void OnSearchValueChanged(string? value)
{
SearchGame();
}
There are at least 4 partial methods available that can be used for every observable property. Before the change and after the change. Two of them have the value before and after.
If SearchGame()
is another property to simply get notified that it got changed (it doesn't have to be an observable property), like a "fullName" property that should be updated when either observable property "firstName" or "lastName" gets changed, you can use the NotifyPropertyChangedFor
attribute, with the name of the property to get notified it should be updated too.