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>[]

一對鍵值對,提供新列實例中後續欄位。 (選用)

適用於