15 references to SetEquals
System.Data.Entity (15)
System\Data\Common\Utils\Boolean\BoolExpr.cs (1)
365return ((TreeExpr<T_Identifier>)other).Children.SetEquals(Children);
System\Data\Common\Utils\Boolean\Clause.cs (2)
123other.Literals.SetEquals(Literals); 156other.Literals.SetEquals(Literals);
System\Data\Common\Utils\Boolean\DomainConstraint.cs (2)
69return (_identifierComparer.Equals(_identifier, other._identifier) && _domain.SetEquals(other._domain)); 140return (_range.SetEquals(other._range) && _variable.Equals(other._variable));
System\Data\Common\Utils\Helpers.cs (1)
48return set1.SetEquals(set2);
System\Data\Common\Utils\Set.cs (1)
371return x.SetEquals(y);
System\Data\Mapping\ViewGeneration\Structures\Domain.cs (2)
228return m_domain.SetEquals(second.m_domain); 545Debug.Assert(domain1.m_possibleValues.SetEquals(domain2.m_possibleValues), "domains must be compatible");
System\Data\Mapping\ViewGeneration\Structures\NegatedConstant.cs (1)
109return m_negatedDomain.SetEquals(rightNegatedConstant.m_negatedDomain);
System\Data\Mapping\ViewGeneration\Validation\ErrorPatternMatcher.cs (2)
787if (!keysOfOne.SetEquals(keysOfTwo)) 797if (!constantsOfOne.SetEquals(constantsOfTwo))
System\Data\Mapping\ViewGeneration\Validation\ForeignConstraint.cs (3)
386var childRefPropertiesCollection = childPropertiesSet.Where(it => it.SetEquals(new Set<EdmProperty>(refConstraint.ToProperties))); 387var parentRefPropertiesCollection = parentPropertiesSet.Where(it => it.SetEquals(new Set<EdmProperty>(refConstraint.FromProperties))); 558if (keyMembers.SetEquals(cSideMembers))