RelationalIndexExtensions.GetFilter Method

Definition

Overloads

GetFilter(IIndex)

Returns the index filter expression.

GetFilter(IReadOnlyIndex)

Returns the index filter expression.

GetFilter(IIndex, StoreObjectIdentifier)

Returns the index filter expression.

GetFilter(IReadOnlyIndex, StoreObjectIdentifier)

Returns the index filter expression.

GetFilter(IIndex)

Returns the index filter expression.

public static string GetFilter (this Microsoft.EntityFrameworkCore.Metadata.IIndex index);
static member GetFilter : Microsoft.EntityFrameworkCore.Metadata.IIndex -> string
<Extension()>
Public Function GetFilter (index As IIndex) As String

Parameters

index
IIndex

The index.

Returns

The index filter expression.

Applies to

GetFilter(IReadOnlyIndex)

Returns the index filter expression.

public static string? GetFilter (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex index);
static member GetFilter : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex -> string
<Extension()>
Public Function GetFilter (index As IReadOnlyIndex) As String

Parameters

index
IReadOnlyIndex

The index.

Returns

The index filter expression.

Applies to

GetFilter(IIndex, StoreObjectIdentifier)

Returns the index filter expression.

public static string GetFilter (this Microsoft.EntityFrameworkCore.Metadata.IIndex index, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetFilter : Microsoft.EntityFrameworkCore.Metadata.IIndex * StoreObjectIdentifier -> string
<Extension()>
Public Function GetFilter (index As IIndex, ByRef storeObject As StoreObjectIdentifier) As String

Parameters

index
IIndex

The index.

storeObject
StoreObjectIdentifier

The identifier of the containing store object.

Returns

The index filter expression.

Applies to

GetFilter(IReadOnlyIndex, StoreObjectIdentifier)

Returns the index filter expression.

public static string? GetFilter (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex index, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetFilter : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex * StoreObjectIdentifier -> string
<Extension()>
Public Function GetFilter (index As IReadOnlyIndex, ByRef storeObject As StoreObjectIdentifier) As String

Parameters

index
IReadOnlyIndex

The index.

storeObject
StoreObjectIdentifier

The identifier of the containing store object.

Returns

The index filter expression.

Applies to