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