DbProviderServices.CreateCommandDefinition Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
CreateCommandDefinition(DbCommand) |
Créer l’objet DbCommandDefinition par défaut basé sur la commande prototype Cette méthode est destinée aux rédacteurs de fournisseurs pour générer une définition de commande par défaut à partir d’une commande. Remarque : le prototype est alors cloné. |
CreateCommandDefinition(DbCommandTree) |
Créez un objet Command Definition en fonction d’une arborescence de commandes. |
CreateCommandDefinition(DbProviderManifest, DbCommandTree) |
Crée une définition de commande à partir du manifeste et de l’arborescence de commandes spécifiés. |
CreateCommandDefinition(DbCommand)
Créer l’objet DbCommandDefinition par défaut basé sur la commande prototype Cette méthode est destinée aux rédacteurs de fournisseurs pour générer une définition de commande par défaut à partir d’une commande. Remarque : le prototype est alors cloné.
public virtual System.Data.Entity.Core.Common.DbCommandDefinition CreateCommandDefinition (System.Data.Common.DbCommand prototype);
abstract member CreateCommandDefinition : System.Data.Common.DbCommand -> System.Data.Entity.Core.Common.DbCommandDefinition
override this.CreateCommandDefinition : System.Data.Common.DbCommand -> System.Data.Entity.Core.Common.DbCommandDefinition
Public Overridable Function CreateCommandDefinition (prototype As DbCommand) As DbCommandDefinition
Paramètres
- prototype
- DbCommand
commande prototype
Retours
objet de définition de commande exécutable
S’applique à
CreateCommandDefinition(DbCommandTree)
Créez un objet Command Definition en fonction d’une arborescence de commandes.
public System.Data.Entity.Core.Common.DbCommandDefinition CreateCommandDefinition (System.Data.Entity.Core.Common.CommandTrees.DbCommandTree commandTree);
member this.CreateCommandDefinition : System.Data.Entity.Core.Common.CommandTrees.DbCommandTree -> System.Data.Entity.Core.Common.DbCommandDefinition
Public Function CreateCommandDefinition (commandTree As DbCommandTree) As DbCommandDefinition
Paramètres
- commandTree
- DbCommandTree
arborescence de commandes pour l’instruction
Retours
objet de définition de commande exécutable
Remarques
Cette méthode délègue simplement à l’implémentation du fournisseur de CreateDbCommandDefinition.
S’applique à
CreateCommandDefinition(DbProviderManifest, DbCommandTree)
Crée une définition de commande à partir du manifeste et de l’arborescence de commandes spécifiés.
public System.Data.Entity.Core.Common.DbCommandDefinition CreateCommandDefinition (System.Data.Entity.Core.Common.DbProviderManifest providerManifest, System.Data.Entity.Core.Common.CommandTrees.DbCommandTree commandTree);
member this.CreateCommandDefinition : System.Data.Entity.Core.Common.DbProviderManifest * System.Data.Entity.Core.Common.CommandTrees.DbCommandTree -> System.Data.Entity.Core.Common.DbCommandDefinition
Public Function CreateCommandDefinition (providerManifest As DbProviderManifest, commandTree As DbCommandTree) As DbCommandDefinition
Paramètres
- providerManifest
- DbProviderManifest
Manifeste.
- commandTree
- DbCommandTree
Arborescence de commandes.
Retours
Définition de commande créée.