DbExpressionBuilder.OfType(DbExpression, TypeUsage) Method

Definition

Creates a new DbOfTypeExpression that produces a set consisting of the elements of the given input set that are of the specified type.

C#
public static System.Data.Common.CommandTrees.DbOfTypeExpression OfType(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage type);

Parameters

argument
DbExpression

A DbExpression that specifies the input set.

type
TypeUsage

Type metadata for the type that elements of the input set must have to be included in the resulting set.

Returns

A new DbOfTypeExpression with the specified set argument and type, and an ExpressionKind of OfType.

Exceptions

argument or type is null.

argument does not have a collection result type, or type is not a type in the same type hierarchy as the element type of the collection result type of argument.

Remarks

DbOfTypeExpression requires that argument has a collection result type with a polymorphic element type, and that type is a type from the same type hierarchy as that element type.

Applies to

Product Versions
.NET Framework 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1