다음을 통해 공유


DbExpressionBuilder.NewRow 메서드

정의

식으로 지정된 주어진 값과 지정된 명명된 열로 행을 생성하는 새 DbNewInstanceExpression을 만듭니다.

public:
 static System::Data::Common::CommandTrees::DbNewInstanceExpression ^ NewRow(System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::Data::Common::CommandTrees::DbExpression ^>> ^ columnValues);
public static System.Data.Common.CommandTrees.DbNewInstanceExpression NewRow (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,System.Data.Common.CommandTrees.DbExpression>> columnValues);
static member NewRow : seq<System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>> -> System.Data.Common.CommandTrees.DbNewInstanceExpression
Public Function NewRow (columnValues As IEnumerable(Of KeyValuePair(Of String, DbExpression))) As DbNewInstanceExpression

매개 변수

columnValues
IEnumerable<KeyValuePair<String,DbExpression>>

행의 구조와 값을 정의하는 문자열-DbExpression 키/값 쌍의 목록입니다.

반환

행의 생성을 나타내는 새 DbNewInstanceExpression입니다.

예외

columnValues가 null이거나 열 이름 또는 식이 있는 요소를 포함하고 있습니다.

columnValues가 비어 있거나 중복 또는 잘못된 열 이름이 있습니다.

적용 대상