Skip to content

Commit

Permalink
fix DbExpressionComparer
Browse files Browse the repository at this point in the history
  • Loading branch information
olmobrutall committed May 13, 2020
1 parent 75db6b6 commit 6ae63ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ protected virtual bool CompareSubquery(SubqueryExpression a, SubqueryExpression
{
if (a.NodeType != b.NodeType)
return false;
switch ((DbExpressionType)a.NodeType)
switch (a.DbNodeType)
{
case DbExpressionType.Scalar:
return CompareScalar((ScalarExpression)a, (ScalarExpression)b);
Expand Down

0 comments on commit 6ae63ae

Please sign in to comment.