ManyToManyAssociationMappingConfiguration.ToTable Method

Definition

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