3 writes to isExact
System.Data.Entity (3)
System\Data\Query\PlanCompiler\ITreeGenerator.cs (3)
1734
this.
isExact
= (template.ExpressionKind == DbExpressionKind.IsOfOnly);
1740
this.
isExact
= (template.ExpressionKind == DbExpressionKind.OfTypeOnly);
1746
this.
isExact
= exact;
7 references to isExact
System.Data.Entity (7)
System\Data\Query\PlanCompiler\ITreeGenerator.cs (7)
1757
if (typesEqual && this.
isExact
== otherIsExact)
1765
else if (this.
isExact
&& otherIsExact)
1772
else if (!this.
isExact
&& !otherIsExact)
1807
TypeUsage isOfOnlyType = (this.
isExact
? this.requiredType : otherRequiredType);
1808
TypeUsage isOfType = (this.
isExact
? otherRequiredType : this.requiredType);
1815
if (object.ReferenceEquals(isOfOnlyType, this.requiredType) && this.
isExact
)
1851
yield return new KeyValuePair<TypeUsage, bool>(currentFilter.requiredType, currentFilter.
isExact
);