DbExpressionBuilder.NewCollection 方法

定义

创建一个新的 DbNewInstanceExpression,它构造一个包含指定元素的集合。

重载

NewCollection(IEnumerable<DbExpression>)

创建一个新的 DbNewInstanceExpression,它构造一个包含指定元素的集合。 集合的类型基于元素的通用类型。 如果不存在通用元素类型,则将引发异常。

NewCollection(DbExpression[])

创建一个新的 DbNewInstanceExpression,它构造一个包含指定元素的集合。 集合的类型基于元素的通用类型。 如果不存在通用元素类型,则将引发异常。

NewCollection(IEnumerable<DbExpression>)

创建一个新的 DbNewInstanceExpression,它构造一个包含指定元素的集合。 集合的类型基于元素的通用类型。 如果不存在通用元素类型,则将引发异常。

public:
 static System::Data::Common::CommandTrees::DbNewInstanceExpression ^ NewCollection(System::Collections::Generic::IEnumerable<System::Data::Common::CommandTrees::DbExpression ^> ^ elements);
public static System.Data.Common.CommandTrees.DbNewInstanceExpression NewCollection (System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> elements);
static member NewCollection : seq<System.Data.Common.CommandTrees.DbExpression> -> System.Data.Common.CommandTrees.DbNewInstanceExpression
Public Function NewCollection (elements As IEnumerable(Of DbExpression)) As DbNewInstanceExpression

参数

elements
IEnumerable<DbExpression>

提供集合元素的表达式列表。

返回

使用指定的集合类型和参数的新 DbNewInstanceExpression。

例外

elements 为 null 或包含 null。

elements 为空,或包含不存在通用结果类型的表达式。

适用于

NewCollection(DbExpression[])

创建一个新的 DbNewInstanceExpression,它构造一个包含指定元素的集合。 集合的类型基于元素的通用类型。 如果不存在通用元素类型,则将引发异常。

public:
 static System::Data::Common::CommandTrees::DbNewInstanceExpression ^ NewCollection(... cli::array <System::Data::Common::CommandTrees::DbExpression ^> ^ elements);
public static System.Data.Common.CommandTrees.DbNewInstanceExpression NewCollection (params System.Data.Common.CommandTrees.DbExpression[] elements);
static member NewCollection : System.Data.Common.CommandTrees.DbExpression[] -> System.Data.Common.CommandTrees.DbNewInstanceExpression
Public Function NewCollection (ParamArray elements As DbExpression()) As DbNewInstanceExpression

参数

elements
DbExpression[]

提供集合元素的表达式列表。

返回

使用指定的集合类型和参数的新 DbNewInstanceExpression。

例外

elements 为 null 或包含 null。

elements 为空,或包含不存在通用结果类型的表达式。

适用于