JoinTableConfiguration.Table Property

[This page is specific to the Entity Framework version 6. The latest version is available as the 'Entity Framework' NuGet package. For more information about Entity Framework, see msdn.com/data/ef.]

Gets or sets the name of the table.

Namespace:  Microsoft.Data.Entity.Design.CodeGeneration
Assembly:  Microsoft.Data.Entity.Design (in Microsoft.Data.Entity.Design.dll)

Syntax

'Declaration
Public Property Table As String 
    Get 
    Set
'Usage
Dim instance As JoinTableConfiguration 
Dim value As String 

value = instance.Table

instance.Table = value
public string Table { get; set; }
public:
property String^ Table {
    String^ get ();
    void set (String^ value);
}
member Table : string with get, set
function get Table () : String 
function set Table (value : String)

Property Value

Type: System.String
The name of the table.

See Also

Reference

JoinTableConfiguration Class

Microsoft.Data.Entity.Design.CodeGeneration Namespace