4 references to IsOf
System.Data.Entity (4)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (1)
1081
return new DbIsOfExpression(DbExpressionKind.
IsOf
, booleanResultType, argument, type);
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\Query\PlanCompiler\ITreeGenerator.cs (2)
377
case DbExpressionKind.
IsOf
:
1875
if(filter.Predicate.ExpressionKind != DbExpressionKind.
IsOf
&&