System.Data.Entity.Core.Objects.ELinq.ExpressionConverter.IsQueryRoot C# (CSharp) Method

IsQueryRoot() private method

private IsQueryRoot ( Expression Expression ) : bool
Expression System.Linq.Expressions.Expression
return bool
        private bool IsQueryRoot(Expression Expression)
        {
            //
            // An expression is the query root if it was the expression used
            // when constructing this converter.
            //
            return ReferenceEquals(_expression, Expression);
        }