Condividi tramite


IMutableEntityType.FindIndex Metodo

Definizione

Overload

FindIndex(IReadOnlyProperty)

Ottiene l'indice definito nella proprietà specificata. Restituisce null se non è definito alcun indice.

FindIndex(IReadOnlyList<IProperty>)

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

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

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 definito nella proprietà specificata. Restituisce null se non è definito alcun indice.

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

Parametri

property
IReadOnlyProperty

Proprietà su cui trovare l'indice.

Restituisce

Indice o null se non viene trovato alcun oggetto .

Si applica a

FindIndex(IReadOnlyList<IProperty>)

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

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

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

Parametri

properties
IReadOnlyList<IProperty>

Proprietà in cui trovare l'indice.

Restituisce

Indice o null se non viene trovato alcun oggetto .

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.IMutableIndex? FindIndex (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty> properties);
abstract member FindIndex : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty> -> Microsoft.EntityFrameworkCore.Metadata.IMutableIndex
Public Function FindIndex (properties As IReadOnlyList(Of IReadOnlyProperty)) As IMutableIndex

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.IMutableIndex FindIndex (string name);
public Microsoft.EntityFrameworkCore.Metadata.IMutableIndex? FindIndex (string name);
abstract member FindIndex : string -> Microsoft.EntityFrameworkCore.Metadata.IMutableIndex
Public Function FindIndex (name As String) As IMutableIndex

Parametri

name
String

Nome dell'indice.

Restituisce

Indice o null se non viene trovato alcun oggetto .

Si applica a