SqlServerPropertyBuilderExtensions.CanSetSequence 方法

定义

返回一个值,该值指示是否可以为键值生成序列设置给定的名称和架构。

public static bool CanSetSequence (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder propertyBuilder, string? name, string? schema, bool fromDataAnnotation = false);
static member CanSetSequence : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder * string * string * bool -> bool
<Extension()>
Public Function CanSetSequence (propertyBuilder As IConventionPropertyBuilder, name As String, schema As String, Optional fromDataAnnotation As Boolean = false) As Boolean

参数

propertyBuilder
IConventionPropertyBuilder

要配置的属性的生成器。

name
String

序列的名称。

schema
String

序列的架构。

fromDataAnnotation
Boolean

指示配置是否是使用数据注释指定的。

返回

true 如果可以为键值生成序列设置给定名称和架构,则为 。

注解

有关详细信息和示例,请参阅为实体类型和关系建模和使用 EF Core 访问SQL Server和Azure SQL数据库

适用于