DbExpressionBuilder.OfType(DbExpression, TypeUsage) 方法

定义

创建一个新的 DbOfTypeExpression,它从指定的输入集生成属于指定类型的元素集。

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

参数

argument
DbExpression

指定输入集的 DbExpression

type
TypeUsage

要使输入集的元素包括在结果集中,该元素必须具有的类型的类型元数据。

返回

使用指定的集参数和类型的新 DbOfTypeExpression,以及 OfType 的 ExpressionKind。

例外

argumenttype 为 null。

argument 没有集合结果类型,或者 type 不是 argument 的集合结果类型的元素类型所在类型层次结构中的类型。

注解

DbOfTypeExpression 需要 argument 具有具有多态元素类型的集合结果类型,并且该 type 类型是该元素类型来自同一类型层次结构的类型。

适用于