RelationalPropertyExtensions.GetMaxLength 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
GetMaxLength(IReadOnlyProperty, StoreObjectIdentifier) |
获取此属性中允许的最大数据长度。 例如,如果 属性为 , String 则这是最大字符数。 |
GetMaxLength(IProperty, StoreObjectIdentifier) |
获取此属性中允许的最大数据长度。 例如,如果 属性为 , String 则这是最大字符数。 |
GetMaxLength(IReadOnlyProperty, StoreObjectIdentifier)
获取此属性中允许的最大数据长度。 例如,如果 属性为 , String 则这是最大字符数。
public static int? GetMaxLength (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetMaxLength : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty * StoreObjectIdentifier -> Nullable<int>
<Extension()>
Public Function GetMaxLength (property As IReadOnlyProperty, ByRef storeObject As StoreObjectIdentifier) As Nullable(Of Integer)
参数
- property
- IReadOnlyProperty
属性。
- storeObject
- StoreObjectIdentifier
包含列的类似表的存储对象的标识符。
返回
最大长度;如果未定义任何值, null
则为 。
适用于
GetMaxLength(IProperty, StoreObjectIdentifier)
获取此属性中允许的最大数据长度。 例如,如果 属性为 , String 则这是最大字符数。
public static int? GetMaxLength (this Microsoft.EntityFrameworkCore.Metadata.IProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetMaxLength : Microsoft.EntityFrameworkCore.Metadata.IProperty * StoreObjectIdentifier -> Nullable<int>
<Extension()>
Public Function GetMaxLength (property As IProperty, ByRef storeObject As StoreObjectIdentifier) As Nullable(Of Integer)
参数
- property
- IProperty
属性。
- storeObject
- StoreObjectIdentifier
包含列的类似表的存储对象的标识符。
返回
最大长度;如果未定义, null
则为 。