SqlServerPropertyExtensions.FindSequence 方法

定义

重载

FindSequence(IProperty)

ISequence在模型中查找要用于键值生成模式的 。

FindSequence(IReadOnlyProperty)

ISequence在模型中查找要用于键值生成模式的 。

FindSequence(IProperty, StoreObjectIdentifier)

ISequence在模型中查找要用于键值生成模式的 。

FindSequence(IReadOnlyProperty, StoreObjectIdentifier)

ISequence在模型中查找要用于键值生成模式的 。

FindSequence(IProperty)

ISequence在模型中查找要用于键值生成模式的 。

public static Microsoft.EntityFrameworkCore.Metadata.ISequence? FindSequence (this Microsoft.EntityFrameworkCore.Metadata.IProperty property);
static member FindSequence : Microsoft.EntityFrameworkCore.Metadata.IProperty -> Microsoft.EntityFrameworkCore.Metadata.ISequence
<Extension()>
Public Function FindSequence (property As IProperty) As ISequence

参数

property
IProperty

属性。

返回

要使用的序列;如果模型中不存在序列, null 则为 。

适用于

FindSequence(IReadOnlyProperty)

ISequence在模型中查找要用于键值生成模式的 。

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

参数

property
IReadOnlyProperty

属性。

返回

要使用的序列;如果模型中不存在序列, null 则为 。

适用于

FindSequence(IProperty, StoreObjectIdentifier)

ISequence在模型中查找要用于键值生成模式的 。

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

参数

property
IProperty

属性。

storeObject
StoreObjectIdentifier

存储对象的标识符。

返回

要使用的序列;如果模型中不存在序列, null 则为 。

适用于

FindSequence(IReadOnlyProperty, StoreObjectIdentifier)

ISequence在模型中查找要用于键值生成模式的 。

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

参数

property
IReadOnlyProperty

属性。

storeObject
StoreObjectIdentifier

存储对象的标识符。

返回

要使用的序列;如果模型中不存在序列, null 则为 。

适用于