Partager via


ConventionSet.Replace Méthode

Définition

Surcharges

Replace<TConvention,TImplementation>(List<TConvention>, TImplementation)

Remplace une convention existante par une convention dérivée.

Replace<TConvention,TImplementation>(IList<TConvention>, TImplementation)

Remplace une convention existante par une convention dérivée.

Replace<TImplementation>(TImplementation)

Remplace une convention existante par une convention dérivée. Enregistre également la nouvelle convention pour tous les types de conventions non implémentés par la convention existante.

Replace<TConvention,TImplementation>(List<TConvention>, TImplementation)

Remplace une convention existante par une convention dérivée.

public static bool Replace<TConvention,TImplementation> (System.Collections.Generic.List<TConvention> conventionsList, TImplementation newConvention) where TImplementation : TConvention;
static member Replace : System.Collections.Generic.List<'Convention> * 'Implementation -> bool
Public Shared Function Replace(Of TConvention, TImplementation) (conventionsList As List(Of TConvention), newConvention As TImplementation) As Boolean

Paramètres de type

TConvention

Type de convention en cours de remplacement.

TImplementation

Type de l’ancienne convention.

Paramètres

conventionsList
List<TConvention>

Liste des instances de convention existantes à analyser.

newConvention
TImplementation

Nouvelle convention.

Retours

true si la convention a été remplacée.

S’applique à

Replace<TConvention,TImplementation>(IList<TConvention>, TImplementation)

Remplace une convention existante par une convention dérivée.

public static bool Replace<TConvention,TImplementation> (System.Collections.Generic.IList<TConvention> conventionsList, TImplementation newConvention) where TImplementation : TConvention;
static member Replace : System.Collections.Generic.IList<'Convention> * 'Implementation -> bool
Public Shared Function Replace(Of TConvention, TImplementation) (conventionsList As IList(Of TConvention), newConvention As TImplementation) As Boolean

Paramètres de type

TConvention

Type de convention en cours de remplacement.

TImplementation

Type de l’ancienne convention.

Paramètres

conventionsList
IList<TConvention>

Liste des instances de convention existantes à analyser.

newConvention
TImplementation

Nouvelle convention.

Retours

true si la convention a été remplacée.

S’applique à

Replace<TImplementation>(TImplementation)

Remplace une convention existante par une convention dérivée. Enregistre également la nouvelle convention pour tous les types de conventions non implémentés par la convention existante.

public virtual void Replace<TImplementation> (TImplementation newConvention) where TImplementation : Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention;
abstract member Replace : 'Implementation -> unit (requires 'Implementation :> Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention)
override this.Replace : 'Implementation -> unit (requires 'Implementation :> Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention)
Public Overridable Sub Replace(Of TImplementation As IConvention) (newConvention As TImplementation)

Paramètres de type

TImplementation

Type de l’ancienne convention.

Paramètres

newConvention
TImplementation

Nouvelle convention.

S’applique à