Share via


ConventionsConfiguration.AddBefore<TExistingConvention> Method

Definition

Enables a configuration convention for the DbModelBuilder. This convention will run before the one specified.

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1004:GenericMethodsShouldProvideTypeParameter")]
public void AddBefore<TExistingConvention> (System.Data.Entity.ModelConfiguration.Conventions.IConvention newConvention) where TExistingConvention : System.Data.Entity.ModelConfiguration.Conventions.IConvention;
member this.AddBefore : System.Data.Entity.ModelConfiguration.Conventions.IConvention -> unit (requires 'ExistingConvention :> System.Data.Entity.ModelConfiguration.Conventions.IConvention)
Public Sub AddBefore(Of TExistingConvention As IConvention) (newConvention As IConvention)

Type Parameters

TExistingConvention

The type of the convention before which the enabled one will run.

Parameters

newConvention
IConvention

The convention to enable.

Attributes

Applies to