SqlServerIndexExtensions.SetDataCompression 方法

定义

重载

SetDataCompression(IMutableIndex, Nullable<DataCompressionType>)

设置一个值,该值指示索引使用的数据压缩。

SetDataCompression(IConventionIndex, Nullable<DataCompressionType>, Boolean)

设置一个值,该值指示索引使用的数据压缩。

SetDataCompression(IMutableIndex, Nullable<DataCompressionType>)

设置一个值,该值指示索引使用的数据压缩。

public static void SetDataCompression (this Microsoft.EntityFrameworkCore.Metadata.IMutableIndex index, Microsoft.EntityFrameworkCore.DataCompressionType? dataCompression);
static member SetDataCompression : Microsoft.EntityFrameworkCore.Metadata.IMutableIndex * Nullable<Microsoft.EntityFrameworkCore.DataCompressionType> -> unit
<Extension()>
Public Sub SetDataCompression (index As IMutableIndex, dataCompression As Nullable(Of DataCompressionType))

参数

index
IMutableIndex

索引。

dataCompression
Nullable<DataCompressionType>

要设置的值。

适用于

SetDataCompression(IConventionIndex, Nullable<DataCompressionType>, Boolean)

设置一个值,该值指示索引使用的数据压缩。

public static Microsoft.EntityFrameworkCore.DataCompressionType? SetDataCompression (this Microsoft.EntityFrameworkCore.Metadata.IConventionIndex index, Microsoft.EntityFrameworkCore.DataCompressionType? dataCompression, bool fromDataAnnotation = false);
static member SetDataCompression : Microsoft.EntityFrameworkCore.Metadata.IConventionIndex * Nullable<Microsoft.EntityFrameworkCore.DataCompressionType> * bool -> Nullable<Microsoft.EntityFrameworkCore.DataCompressionType>
<Extension()>
Public Function SetDataCompression (index As IConventionIndex, dataCompression As Nullable(Of DataCompressionType), Optional fromDataAnnotation As Boolean = false) As Nullable(Of DataCompressionType)

参数

index
IConventionIndex

索引。

dataCompression
Nullable<DataCompressionType>

要设置的值。

fromDataAnnotation
Boolean

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

返回

配置的值。

适用于