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