Share via


ConventionSetBuilder.Remove Method

Definition

Overloads

Name Description
Remove(Type)

Removes the convention of the given type.

Remove<TImplementaion>()

Remove the convention of the given type.

Remove(Type)

Source:
ConventionSetBuilder.cs
Source:
ConventionSetBuilder.cs
Source:
ConventionSetBuilder.cs
Source:
ConventionSetBuilder.cs

Removes the convention of the given type.

public virtual void Remove(Type conventionType);
abstract member Remove : Type -> unit
override this.Remove : Type -> unit
Public Overridable Sub Remove (conventionType As Type)

Parameters

conventionType
Type

The convention type to remove.

Applies to

Remove<TImplementaion>()

Source:
ConventionSetBuilder.cs
Source:
ConventionSetBuilder.cs
Source:
ConventionSetBuilder.cs

Remove the convention of the given type.

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

Type Parameters

TImplementation TImplementaion

The type of convention to remove

The type of convention to remove

Applies to