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