Share via


RelationalPropertyExtensions.GetColumnOrder 方法

定义

重载

GetColumnOrder(IReadOnlyProperty)

返回此属性映射到的列的顺序。

GetColumnOrder(IReadOnlyProperty, StoreObjectIdentifier)

返回此属性针对特定表映射到的列的顺序。

GetColumnOrder(IReadOnlyProperty)

返回此属性映射到的列的顺序。

public static int? GetColumnOrder (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property);
static member GetColumnOrder : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty -> Nullable<int>
<Extension()>
Public Function GetColumnOrder (property As IReadOnlyProperty) As Nullable(Of Integer)

参数

property
IReadOnlyProperty

属性。

返回

列顺序。

适用于

GetColumnOrder(IReadOnlyProperty, StoreObjectIdentifier)

返回此属性针对特定表映射到的列的顺序。

public static int? GetColumnOrder (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetColumnOrder : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty * StoreObjectIdentifier -> Nullable<int>
<Extension()>
Public Function GetColumnOrder (property As IReadOnlyProperty, ByRef storeObject As StoreObjectIdentifier) As Nullable(Of Integer)

参数

property
IReadOnlyProperty

属性。

storeObject
StoreObjectIdentifier

包含列的类似表的存储对象的标识符。

返回

列顺序。

适用于