Condividi tramite


IReadOnlyEntityType.FindIndex Metodo

Definizione

Overload

FindIndex(IReadOnlyProperty)

Ottiene l'indice senza nome definito nella proprietà specificata. Restituisce null se non è definito alcun indice di questo tipo.

FindIndex(IReadOnlyList<IReadOnlyProperty>)

Ottiene l'indice senza nome definito nelle proprietà specificate. Restituisce null se non è definito alcun indice di questo tipo.

FindIndex(String)

Ottiene l'indice con il nome specificato. Restituisce null se non esiste alcun indice di questo tipo.

FindIndex(IReadOnlyProperty)

Ottiene l'indice senza nome definito nella proprietà specificata. Restituisce null se non è definito alcun indice di questo tipo.

public virtual Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex? FindIndex (Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property);
abstract member FindIndex : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex
override this.FindIndex : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex
Public Overridable Function FindIndex (property As IReadOnlyProperty) As IReadOnlyIndex

Parametri

property
IReadOnlyProperty

Proprietà su cui trovare l'indice.

Restituisce

Indice o null se non viene trovato alcun oggetto .

Commenti

Gli indici denominati non verranno restituiti anche se l'elenco di proprietà corrisponde.

Si applica a

FindIndex(IReadOnlyList<IReadOnlyProperty>)

Ottiene l'indice senza nome definito nelle proprietà specificate. Restituisce null se non è definito alcun indice di questo tipo.

public Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex? FindIndex (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty> properties);
abstract member FindIndex : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty> -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex
Public Function FindIndex (properties As IReadOnlyList(Of IReadOnlyProperty)) As IReadOnlyIndex

Parametri

properties
IReadOnlyList<IReadOnlyProperty>

Proprietà in cui trovare l'indice.

Restituisce

Indice o null se non viene trovato alcun oggetto .

Commenti

Gli indici denominati non verranno restituiti anche se l'elenco di proprietà corrisponde.

Si applica a

FindIndex(String)

Ottiene l'indice con il nome specificato. Restituisce null se non esiste alcun indice di questo tipo.

public Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex? FindIndex (string name);
abstract member FindIndex : string -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex
Public Function FindIndex (name As String) As IReadOnlyIndex

Parametri

name
String

Nome dell'indice da trovare.

Restituisce

Indice o null se non viene trovato alcun oggetto .

Si applica a