SqlServerIndexBuilderExtensions.HasFillFactor 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
HasFillFactor(IConventionIndexBuilder, Nullable<Int32>, Boolean) |
配置在面向SQL Server时是否使用填充因子选项创建索引。 |
HasFillFactor(IndexBuilder, Int32) |
配置在面向SQL Server时是否使用填充因子选项创建索引。 |
HasFillFactor<TEntity>(IndexBuilder<TEntity>, Int32) |
配置在面向SQL Server时是否使用填充因子选项创建索引。 |
HasFillFactor(IConventionIndexBuilder, Nullable<Int32>, Boolean)
配置在面向SQL Server时是否使用填充因子选项创建索引。
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder HasFillFactor (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder indexBuilder, int? fillFactor, bool fromDataAnnotation = false);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder? HasFillFactor (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder indexBuilder, int? fillFactor, bool fromDataAnnotation = false);
static member HasFillFactor : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder * Nullable<int> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder
<Extension()>
Public Function HasFillFactor (indexBuilder As IConventionIndexBuilder, fillFactor As Nullable(Of Integer), Optional fromDataAnnotation As Boolean = false) As IConventionIndexBuilder
参数
- indexBuilder
- IConventionIndexBuilder
要配置的索引的生成器。
- fromDataAnnotation
- Boolean
指示配置是否是使用数据注释指定的。
返回
如果应用了配置,则为同一生成器实例, null
否则为 。
注解
有关详细信息和示例,请参阅为实体类型和关系建模和使用 EF Core 访问SQL Server和Azure SQL数据库。
适用于
HasFillFactor(IndexBuilder, Int32)
配置在面向SQL Server时是否使用填充因子选项创建索引。
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder HasFillFactor (this Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder indexBuilder, int fillFactor);
static member HasFillFactor : Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder * int -> Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder
<Extension()>
Public Function HasFillFactor (indexBuilder As IndexBuilder, fillFactor As Integer) As IndexBuilder
参数
- indexBuilder
- IndexBuilder
要配置的索引的生成器。
- fillFactor
- Int32
一个值,该值指示是否使用填充因子选项创建索引。
返回
用于进一步配置索引的生成器。
注解
有关详细信息和示例,请参阅为实体类型和关系建模和使用 EF Core 访问SQL Server和Azure SQL数据库。
适用于
HasFillFactor<TEntity>(IndexBuilder<TEntity>, Int32)
配置在面向SQL Server时是否使用填充因子选项创建索引。
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<TEntity> HasFillFactor<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<TEntity> indexBuilder, int fillFactor);
static member HasFillFactor : Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<'Entity> * int -> Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<'Entity>
<Extension()>
Public Function HasFillFactor(Of TEntity) (indexBuilder As IndexBuilder(Of TEntity), fillFactor As Integer) As IndexBuilder(Of TEntity)
类型参数
- TEntity
参数
- indexBuilder
- IndexBuilder<TEntity>
要配置的索引的生成器。
- fillFactor
- Int32
一个值,该值指示是否使用填充因子选项创建索引。
返回
IndexBuilder<TEntity>
用于进一步配置索引的生成器。
注解
有关详细信息和示例,请参阅为实体类型和关系建模和使用 EF Core 访问SQL Server和Azure SQL数据库。