共用方式為


Row 建構函式

定義

使用指定的第一個資料行值和選擇性的後續資料行值,初始化 Row 類別的新執行個體。

public Row(System.Collections.Generic.KeyValuePair<string,System.Data.Entity.Core.Common.CommandTrees.DbExpression> columnValue, params System.Collections.Generic.KeyValuePair<string,System.Data.Entity.Core.Common.CommandTrees.DbExpression>[] columnValues);
new System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder.Row : System.Collections.Generic.KeyValuePair<string, System.Data.Entity.Core.Common.CommandTrees.DbExpression> * System.Collections.Generic.KeyValuePair<string, System.Data.Entity.Core.Common.CommandTrees.DbExpression>[] -> System.Data.Entity.Core.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>[]

索引鍵值組,提供新資料列執行個體的任何後續資料行。 (選用)

適用於