RelationalPropertyExtensions.GetColumnType 方法

定义

重载

GetColumnType(IReadOnlyProperty, StoreObjectIdentifier)

如果找不到数据库类型, null 则返回属性映射到的列的数据库类型。

GetColumnType(IProperty, StoreObjectIdentifier)

返回属性映射到的列的数据库类型。

GetColumnType(IProperty)

返回属性映射到的列的数据库类型。

GetColumnType(IReadOnlyProperty)

如果找不到数据库类型, null 则返回属性映射到的列的数据库类型。

GetColumnType(IReadOnlyProperty, StoreObjectIdentifier)

如果找不到数据库类型, null 则返回属性映射到的列的数据库类型。

public static string? GetColumnType (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetColumnType : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty * StoreObjectIdentifier -> string
<Extension()>
Public Function GetColumnType (property As IReadOnlyProperty, ByRef storeObject As StoreObjectIdentifier) As String

参数

property
IReadOnlyProperty

属性。

storeObject
StoreObjectIdentifier

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

返回

属性映射到的列的数据库类型;如果找不到数据库类型, null 则为 。

适用于

GetColumnType(IProperty, StoreObjectIdentifier)

返回属性映射到的列的数据库类型。

public static string GetColumnType (this Microsoft.EntityFrameworkCore.Metadata.IProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetColumnType : Microsoft.EntityFrameworkCore.Metadata.IProperty * StoreObjectIdentifier -> string
<Extension()>
Public Function GetColumnType (property As IProperty, ByRef storeObject As StoreObjectIdentifier) As String

参数

property
IProperty

属性。

storeObject
StoreObjectIdentifier

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

返回

属性映射到的列的数据库类型。

适用于

GetColumnType(IProperty)

返回属性映射到的列的数据库类型。

public static string GetColumnType (this Microsoft.EntityFrameworkCore.Metadata.IProperty property);
static member GetColumnType : Microsoft.EntityFrameworkCore.Metadata.IProperty -> string
<Extension()>
Public Function GetColumnType (property As IProperty) As String

参数

property
IProperty

属性。

返回

属性映射到的列的数据库类型。

适用于

GetColumnType(IReadOnlyProperty)

如果找不到数据库类型, null 则返回属性映射到的列的数据库类型。

public static string? GetColumnType (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property);
static member GetColumnType : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty -> string
<Extension()>
Public Function GetColumnType (property As IReadOnlyProperty) As String

参数

property
IReadOnlyProperty

属性。

返回

属性映射到的列的数据库类型;如果找不到数据库类型, null 则为 。

适用于