ConventionTypeConfiguration<T>.ToTable 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
ToTable(String) |
Configure le nom de la table auquel ce type d'entité est mappé. |
ToTable(String, String) |
Configure le nom de la table auquel ce type d'entité est mappé. |
ToTable(String)
Configure le nom de la table auquel ce type d'entité est mappé.
public System.Data.Entity.ModelConfiguration.Configuration.ConventionTypeConfiguration<T> ToTable (string tableName);
member this.ToTable : string -> System.Data.Entity.ModelConfiguration.Configuration.ConventionTypeConfiguration<'T (requires 'T : null)>
Public Function ToTable (tableName As String) As ConventionTypeConfiguration(Of T)
Paramètres
- tableName
- String
Nom de la table.
Retours
Le même ConventionTypeConfiguration<T> instance afin que plusieurs appels puissent être chaînés.
Remarques
L’appel de cette option n’aura aucun effet une fois qu’elle a été configurée.
S’applique à
ToTable(String, String)
Configure le nom de la table auquel ce type d'entité est mappé.
public System.Data.Entity.ModelConfiguration.Configuration.ConventionTypeConfiguration<T> ToTable (string tableName, string schemaName);
member this.ToTable : string * string -> System.Data.Entity.ModelConfiguration.Configuration.ConventionTypeConfiguration<'T (requires 'T : null)>
Public Function ToTable (tableName As String, schemaName As String) As ConventionTypeConfiguration(Of T)
Paramètres
- tableName
- String
Nom de la table.
- schemaName
- String
Schéma de base de données de la table.
Retours
Le même ConventionTypeConfiguration<T> instance afin que plusieurs appels puissent être chaînés.
Remarques
L’appel de cette option n’aura aucun effet une fois qu’elle a été configurée.