You would have to handle an event or add the logic to the Set method of the property. This may be a good place for you to use the INotifyPropertyChanged event.Public Class MyClass
Implements System.ComponentModel.INotifyPropertyChanged
Public Event PropertyChanged(ByVal sender As Object, ByVal e As System.ComponentModel.PropertyChangedEventArgs) Implements System.ComponentModel.INotifyPropertyChanged.PropertyChanged
Public Property MyProperty As String
Get
Return _MyProperty
End Get
Set(Byval value as String)
_MyProperty = value
Raiseevent PropertyChanged(Me,New System.ComponentModel.PropertyChangedEventArgs("MyProperty"))
End Set
End Property
End Class
There are some other ways to go about it as well, but you will have to take action on the setting of the property. If you want to use the BO mapper to do this for you, then use the PropertyChanging or PropertyChanged events.