Exemplo n.º 1
0
 public bool Equals(IRootMapperKey otherKey)
 {
     return(TypesMatch(otherKey) &&
            (((QueryProjectorKey)otherKey).QueryProviderType == QueryProviderType));
 }
Exemplo n.º 2
0
 public bool Equals(IRootMapperKey otherKey) => base.Equals(otherKey);
 private static bool CompareRootMapperKeys(IRootMapperKey x, IRootMapperKey y)
 {
     // ReSharper disable PossibleNullReferenceException
     return(ReferenceEquals(x.RuleSet, y.RuleSet) && x.Equals(y));
     // ReSharper restore PossibleNullReferenceException
 }