8 references to OfTypeOnly
System.Data.Entity (8)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
724if (expression.ExpressionKind == DbExpressionKind.OfTypeOnly)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (2)
1047/// <returns>A new DbOfTypeExpression with the specified set argument and type, and an ExpressionKind of <see cref="DbExpressionKind.OfTypeOnly"/>.</returns> 1061return new DbOfTypeExpression(DbExpressionKind.OfTypeOnly, collectionOfTypeResultType, argument, type);
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
730TreeNode retInfo = new TreeNode(e.ExpressionKind == DbExpressionKind.OfTypeOnly ? "OfTypeOnly" : "OfType");
System\Data\Common\CommandTrees\OperatorExpressions.cs (1)
417DbExpressionKind.OfTypeOnly == ofTypeKind,
System\Data\Query\PlanCompiler\ITreeGenerator.cs (3)
1740this.isExact = (template.ExpressionKind == DbExpressionKind.OfTypeOnly); 1843return Merge(other.OfType, (other.ExpressionKind == DbExpressionKind.OfTypeOnly)); 1932case DbExpressionKind.OfTypeOnly: