Row 构造函数

定义

使用指定的第一列值和可选的连续列值初始化类的新实例 Row

public:
 Row(System::Collections::Generic::KeyValuePair<System::String ^, System::Data::Common::CommandTrees::DbExpression ^> columnValue, ... cli::array <System::Collections::Generic::KeyValuePair<System::String ^, System::Data::Common::CommandTrees::DbExpression ^>> ^ columnValues);
public Row(System.Collections.Generic.KeyValuePair<string,System.Data.Common.CommandTrees.DbExpression> columnValue, params System.Collections.Generic.KeyValuePair<string,System.Data.Common.CommandTrees.DbExpression>[] columnValues);
new System.Data.Common.CommandTrees.ExpressionBuilder.Row : System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression> * System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>[] -> System.Data.Common.CommandTrees.ExpressionBuilder.Row
Public Sub New (columnValue As KeyValuePair(Of String, DbExpression), ParamArray columnValues As KeyValuePair(Of String, DbExpression)())

参数

columnValue
KeyValuePair<String,DbExpression>

一个键值对,它提供新行实例中的第一列。 (required)

columnValues
KeyValuePair<String,DbExpression>[]

一个键值对,用于在新行实例中提供任何后续列。 (可选)

适用于