Note
This function will assign current modeled property values back to expressions, this is often useful
when a model is being synchronized to an external source, e.g., user interface elements.
public static Action<TExpressionScope> UpdateExpressions<TExpressionScope>(
IEnumerable<PropertyInfo>? properties = null,
TypeRegistry? typeRegistry = null
)
where TExpressionScope : Object, IValueExpressionScope<T>
Public Shared Function UpdateExpressions(Of TExpressionScope As {Object, IValueExpressionScope(Of T)}) (
Optional properties As IEnumerable(Of PropertyInfo) = Nothing,
Optional typeRegistry As TypeRegistry = Nothing
) As Action(Of TExpressionScope)
public:
generic<typename TExpressionScope>
where TExpressionScope : Object, IValueExpressionScope<T>
static Action<TExpressionScope>^ UpdateExpressions(
IEnumerable<PropertyInfo^>^ properties = nullptr,
TypeRegistry^ typeRegistry = nullptr
)