DbExpressionBuilder.IsOfOnly(DbExpression, TypeUsage) Method

Definition

Creates a new DbIsOfExpression expression that determines whether the given argument is of the specified type, and only that type (not a subtype).

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbIsOfExpression ^ IsOfOnly(System::Data::Common::CommandTrees::DbExpression ^ argument, System::Data::Metadata::Edm::TypeUsage ^ type);
public static System.Data.Common.CommandTrees.DbIsOfExpression IsOfOnly (this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage type);
static member IsOfOnly : System.Data.Common.CommandTrees.DbExpression * System.Data.Metadata.Edm.TypeUsage -> System.Data.Common.CommandTrees.DbIsOfExpression
<Extension()>
Public Function IsOfOnly (argument As DbExpression, type As TypeUsage) As DbIsOfExpression

Parameters

argument
DbExpression

An expression that specifies the instance.

type
TypeUsage

Type metadata that specifies the type that the instance's result type should be compared to.

Returns

A new DbIsOfExpression with the specified instance and type and DbExpressionKind IsOfOnly.

Exceptions

argument or type is null.

type is not in the same type hierarchy as the result type of argument.

Remarks

DbIsOfExpression requires that argument has a polymorphic result type, and that type is a type from the same type hierarchy as that result type.

Applies to