DeleteModificationStoredProcedureConfiguration<TEntityType> Class

Definition

Allows configuration to be performed for a stored procedure that is used to delete entities.

public class DeleteModificationStoredProcedureConfiguration<TEntityType> : System.Data.Entity.ModelConfiguration.Configuration.ModificationStoredProcedureConfigurationBase where TEntityType : class
type DeleteModificationStoredProcedureConfiguration<'EntityType (requires 'EntityType : null)> = class
    inherit ModificationStoredProcedureConfigurationBase
Public Class DeleteModificationStoredProcedureConfiguration(Of TEntityType)
Inherits ModificationStoredProcedureConfigurationBase

Type Parameters

TEntityType

The type of the entity that the stored procedure can be used to delete.

Inheritance
DeleteModificationStoredProcedureConfiguration<TEntityType>

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

GetHashCode()

Serves as the default hash function.

GetType()

Gets the Type of the current instance.

HasName(String)

Configures the name of the stored procedure.

HasName(String, String)

Configures the name of the stored procedure.

Navigation<TPrincipalEntityType>(Expression<Func<TPrincipalEntityType, ICollection<TEntityType>>>, Action<AssociationModificationStoredProcedureConfiguration<TPrincipalEntityType>>)

Configures parameters for a relationship where the foreign key property is not included in the class.

Navigation<TPrincipalEntityType>(Expression<Func<TPrincipalEntityType, TEntityType>>, Action<AssociationModificationStoredProcedureConfiguration<TPrincipalEntityType>>)

Configures parameters for a relationship where the foreign key property is not included in the class.

Parameter(Expression<Func<TEntityType,Byte[]>>, String)

Configures a parameter for this stored procedure.

Parameter(Expression<Func<TEntityType,DbGeography>>, String)

Configures a parameter for this stored procedure.

Parameter(Expression<Func<TEntityType,DbGeometry>>, String)

Configures a parameter for this stored procedure.

Parameter(Expression<Func<TEntityType,String>>, String)

Configures a parameter for this stored procedure.

Parameter<TProperty>(Expression<Func<TEntityType,Nullable<TProperty>>>, String)

Configures a parameter for this stored procedure.

Parameter<TProperty>(Expression<Func<TEntityType,TProperty>>, String)

Configures a parameter for this stored procedure.

RowsAffectedParameter(String)

Configures the output parameter that returns the rows affected by this stored procedure.

ToString()

Returns a string that represents the current object.

Applies to