ValueExpressionAttributeBaseGetExpressionUpdateValue Method

Gets the modeled property based value used to update the Expression.

Definition

Namespace: Gemstone.Expressions.Model
Assembly: Gemstone.Expressions (in Gemstone.Expressions.dll) Version: 1.0.137 -- Release Build+c01c06f95fd3b3a0ec8c06e0f13d6fe82d7170d3
public virtual string GetExpressionUpdateValue(
	PropertyInfo property
)

Parameters

property  PropertyInfo
Property from which attribute was derived.

Return Value

String
Assignment expression based on source property.

Implements

IValueExpressionAttributeGetExpressionUpdateValue(PropertyInfo)

Remarks

This function allows derived attribute implementations to adjust the update value based on property information, e.g., property type.

The expression update value is typically used to assign modeled property values back to expressions allowing synchronization of a model with an external source, e.g., a user interface element.

Default implementation should return $"Instance.{property.Name}".

See Also