Retrieves the name of the property from a member expression

Namespace: NHibernate.Impl
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public static string FindMemberExpression(
	Expression expression
)
Visual Basic
Public Shared Function FindMemberExpression ( _
	expression As Expression _
) As String
Visual C++
public:
static String^ FindMemberExpression(
	Expression^ expression
)

Parameters

expression
Type: System.Linq.Expressions..::..Expression
An expression tree that can contain either a member, or a conversion from a member. If the member is referenced from a null valued object, then the container is treated as an alias.

Return Value

The name of the member property

See Also