8 references to OfTypeOnly
System.Data.Entity (8)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
724
if (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>
1061
return new DbOfTypeExpression(DbExpressionKind.
OfTypeOnly
, collectionOfTypeResultType, argument, type);
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
730
TreeNode retInfo = new TreeNode(e.ExpressionKind == DbExpressionKind.
OfTypeOnly
? "OfTypeOnly" : "OfType");
System\Data\Common\CommandTrees\OperatorExpressions.cs (1)
417
DbExpressionKind.
OfTypeOnly
== ofTypeKind,
System\Data\Query\PlanCompiler\ITreeGenerator.cs (3)
1740
this.isExact = (template.ExpressionKind == DbExpressionKind.
OfTypeOnly
);
1843
return Merge(other.OfType, (other.ExpressionKind == DbExpressionKind.
OfTypeOnly
));
1932
case DbExpressionKind.
OfTypeOnly
: