Arc.Infrastructure.Data.NHibernate.Specifications.MemberFinder.IsPropertyExpression C# (CSharp) Method

IsPropertyExpression() public static method

Determines whether the specified expression is property expression.
public static IsPropertyExpression ( Expression expression ) : bool
expression System.Linq.Expressions.Expression The expression.
return bool
        public static bool IsPropertyExpression(Expression expression)
        {
            return Utilities.Expressions.MemberFinder.IsPropertyExpression(expression) || IsAlias(expression);
        }