10 references to IsOfOnly
System.Data.Entity (10)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
683
if (expression.ExpressionKind == DbExpressionKind.
IsOfOnly
)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (1)
1101
return new DbIsOfExpression(DbExpressionKind.
IsOfOnly
, booleanResultType, argument, type);
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
713
if (DbExpressionKind.
IsOfOnly
== e.ExpressionKind)
System\Data\Common\CommandTrees\OperatorExpressions.cs (1)
374
Debug.Assert(DbExpressionKind.IsOf == this.ExpressionKind || DbExpressionKind.
IsOfOnly
== this.ExpressionKind, string.Format(CultureInfo.InvariantCulture, "Invalid DbExpressionKind used in DbIsOfExpression: {0}", Enum.GetName(typeof(DbExpressionKind), this.ExpressionKind)));
System\Data\Mapping\Update\Internal\Propagator.Evaluator.cs (1)
190
if (DbExpressionKind.
IsOfOnly
!= predicate.ExpressionKind)
System\Data\Query\PlanCompiler\ITreeGenerator.cs (5)
378
case DbExpressionKind.
IsOfOnly
:
1678
if (DbExpressionKind.
IsOfOnly
== e.ExpressionKind)
1734
this.isExact = (template.ExpressionKind == DbExpressionKind.
IsOfOnly
);
1838
return Merge(other.OfType, (other.ExpressionKind == DbExpressionKind.
IsOfOnly
));
1876
filter.Predicate.ExpressionKind != DbExpressionKind.
IsOfOnly
)