DbExpressionBuilder.NewRow 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立新的 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>>
string-DbExpression 索引鍵值組清單,用於定義資料列的結構和值。
傳回
表示資料列建構的新 DbNewInstanceExpression。
例外狀況
columnValues
為 null 或包含擁有 null 資料行名稱或運算式的項目。
columnValues
是空的或包含重複或無效的資料行名稱。