System.Data.Entity.Core.Objects.ELinq.ExpressionConverter.IsQueryRoot C# (CSharp) 메소드

IsQueryRoot() 개인적인 메소드

private IsQueryRoot ( Expression Expression ) : bool
Expression System.Linq.Expressions.Expression
리턴 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);
        }