Partager via


DbExpressionBuilder.NewRow Méthode

Définition

Crée un objet DbNewInstanceExpression qui produit une ligne avec les colonnes nommées et les valeurs fournies, qui sont spécifiées en tant qu'expressions.

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

Paramètres

columnValues
IEnumerable<KeyValuePair<String,DbExpression>>

Liste de paires clé/valeur chaîne/DbExpression qui définit la structure et les valeurs de la ligne.

Retours

Nouvelle DbNewInstanceExpression qui représente la construction de la ligne.

Exceptions

columnValues est null ou contient un élément avec un nom de colonne ou une expression.

columnValues est vide ou contient un nom de colonne en double ou non valide.

S’applique à