Skip to content

Commit

Permalink
Query: Skip hash code computation for projection (#21707)
Browse files Browse the repository at this point in the history
Resolves #21700
  • Loading branch information
smitpatel authored Jul 21, 2020
1 parent 13e69ca commit a92f89c
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2900,10 +2900,11 @@ public override int GetHashCode()
var hash = new HashCode();
hash.Add(base.GetHashCode());

foreach (var projection in _projection)
{
hash.Add(projection);
}
// TODO: See issue#21700 & #18923
//foreach (var projection in _projection)
//{
// hash.Add(projection);
//}

foreach (var projectionMapping in _projectionMapping)
{
Expand Down

0 comments on commit a92f89c

Please sign in to comment.