Share via


ColumnConfiguration.Order Property

 

Gets or sets the order that this column should appear in the database table.

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

Syntax

public Nullable<int> Order {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    set;
}
public:
property Nullable<int> Order {
    [CompilerGeneratedAttribute]
    Nullable<int> get();
    [CompilerGeneratedAttribute]
    void set(Nullable<int> value);
}
member Order : Nullable<int> with get, set
Public Property Order As Nullable(Of Integer)

Property Value

Type: System.Nullable<Int32>

The order that this column should appear in the database table.

See Also

ColumnConfiguration Class
Microsoft.Data.Entity.Design.CodeGeneration Namespace

Return to top