EntityAspectForceEntityPropertyChanged Method Breeze.sharp
Forces a PropertyChanged event to be fired.

Namespace: Breeze.Sharp
Assembly: Breeze.Sharp (in Breeze.Sharp.dll) Version: 0.6.0.5 (0.6.0.5)
Syntax

public void ForceEntityPropertyChanged(
	PropertyChangedEventArgs args
)

Parameters

args
Type: System.ComponentModelPropertyChangedEventArgs
A PropertyChangedEventArgs or null
Remarks

An Empty value or a null reference (Nothing in Visual Basic) for the propertyName parameter of PropertyChangedEventArgs indicates that all of the properties have changed, causing the .NET framework to also fire a ListChangedEventArgs.ListChangedType of "Reset" if the event propagates to a list that supports the ListChanged event.

Passing a null value to this method will insure that a valid (dynamically created) property name is passed on to any listeners.

This method should only be needed in situations where changes to calculated fields or other properties not backed by an StructuralProperty must be made known.

See Also

Reference