Implemented interface member:
method
Equals
System.IEquatable<T>.Equals(T)
8 references to Equals
System.Data.Entity (8)
System\Data\Mapping\ViewGeneration\CellCreator.cs (3)
204int indexOfBooLMemberInProjection = originalCell.GetLeftQuery(viewTarget).GetProjectedMembers().TakeWhile(path => !path.Equals(memberToExpand)).Count(); 215.Where(restriction => restriction.RestrictedMemberSlot.MemberPath.Equals(memberToExpand)) 218.Where(restriction => restriction.RestrictedMemberSlot.MemberPath.Equals(rightSidePath))
System\Data\Mapping\ViewGeneration\Structures\CaseStatement.cs (2)
119Debug.Assert(m_memberPath.Equals(((MemberProjectedSlot)m_elseValue).MemberPath), "case statement slot (ELSE) must depend only on its own slot value"); 126Debug.Assert(m_memberPath.Equals(((MemberProjectedSlot)whenThen.Value).MemberPath), "case statement slot (THEN) must depend only on its own slot value");
System\Data\Mapping\ViewGeneration\Structures\MemberPath.cs (1)
537return Equals(right);
System\Data\Mapping\ViewGeneration\Validation\ErrorPatternMatcher.cs (2)
125if (condition.RestrictedMemberSlot.MemberPath.Equals(member)) 159int indexOfMemberInProjection = leftCellQuery.GetProjectedMembers().TakeWhile(path => !path.Equals(leftMember)).Count();