ManyToManyAssociationMappingConfiguration.ToTable Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ToTable(String) |
Configures the join table name for the relationship. |
ToTable(String, String) |
Configures the join table name and schema for the relationship. |
ToTable(String)
Configures the join table name for the relationship.
public System.Data.Entity.ModelConfiguration.Configuration.ManyToManyAssociationMappingConfiguration ToTable (string tableName);
member this.ToTable : string -> System.Data.Entity.ModelConfiguration.Configuration.ManyToManyAssociationMappingConfiguration
Public Function ToTable (tableName As String) As ManyToManyAssociationMappingConfiguration
Parameters
- tableName
- String
Name of the table.
Returns
The same ManyToManyAssociationMappingConfiguration instance so that multiple calls can be chained.
Applies to
ToTable(String, String)
Configures the join table name and schema for the relationship.
public System.Data.Entity.ModelConfiguration.Configuration.ManyToManyAssociationMappingConfiguration ToTable (string tableName, string schemaName);
member this.ToTable : string * string -> System.Data.Entity.ModelConfiguration.Configuration.ManyToManyAssociationMappingConfiguration
Public Function ToTable (tableName As String, schemaName As String) As ManyToManyAssociationMappingConfiguration
Parameters
- tableName
- String
Name of the table.
- schemaName
- String
Schema of the table.
Returns
The same ManyToManyAssociationMappingConfiguration instance so that multiple calls can be chained.
Applies to
Entity Framework