다음을 통해 공유


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

새 행 인스턴스의 이후 열을 모두 제공하는 키/값 쌍입니다. (선택 사항)

적용 대상