Click or drag to resize

PropertySupportExtractPropertyNameT, TProperty Method (ExpressionFuncT, TProperty)

Extracts the property name from a property expression.

Namespace:  TomsToolbox.Essentials
Assembly:  TomsToolbox.Essentials (in TomsToolbox.Essentials.dll)
Syntax
public static string ExtractPropertyName<T, TProperty>(
	Expression<Func<T, TProperty>> propertyExpression
)

Parameters

propertyExpression
Type: System.Linq.ExpressionsExpressionFuncT, TProperty
The property expression (e.g. p => p.PropertyName) to extract the property name from.

Type Parameters

T
The object type containing the property specified in the expression.
TProperty
The property type.

Return Value

Type: String
The name of the property.
Exceptions
ExceptionCondition
ArgumentExceptionThrown when the expression is:
Not a MemberExpression
The MemberExpression does not represent a property.
See Also