次の方法で共有


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>

新しい行インスタンスの最初の列を提供するキー/値のペア。 (必須)

columnValues
KeyValuePair<String,DbExpression>[]

新しい行インスタンス内の以降の列を提供するキー/値のペア。 (省略可能)

適用対象