DbExpressionBuilder.NewRow 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立新的 DbNewInstanceExpression,這個運算式會使用指定的具名資料行和給定值產生資料列 (如運算式所指定)。
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public static System.Data.Entity.Core.Common.CommandTrees.DbNewInstanceExpression NewRow (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,System.Data.Entity.Core.Common.CommandTrees.DbExpression>> columnValues);
static member NewRow : seq<System.Collections.Generic.KeyValuePair<string, System.Data.Entity.Core.Common.CommandTrees.DbExpression>> -> System.Data.Entity.Core.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 是空的,或包含重複或不正確資料行名稱。