ForeignKeyNavigationPropertyConfiguration Class

Definition

Configures a relationship that can only support foreign key properties that are not exposed in the object model. This configuration functionality is available via the Code First Fluent API, see DbModelBuilder.

public class ForeignKeyNavigationPropertyConfiguration : System.Data.Entity.ModelConfiguration.Configuration.CascadableNavigationPropertyConfiguration
type ForeignKeyNavigationPropertyConfiguration = class
    inherit CascadableNavigationPropertyConfiguration
Public Class ForeignKeyNavigationPropertyConfiguration
Inherits CascadableNavigationPropertyConfiguration
Inheritance
ForeignKeyNavigationPropertyConfiguration
Derived

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.

Map(Action<ForeignKeyAssociationMappingConfiguration>)

Configures the relationship to use foreign key property(s) that are not exposed in the object model. The column(s) and table can be customized by specifying a configuration action. If an empty configuration action is specified then column name(s) will be generated by convention. If foreign key properties are exposed in the object model then use the HasForeignKey method. Not all relationships support exposing foreign key properties in the object model.

ToString()

Returns a string that represents the current object.

WillCascadeOnDelete()

Configures cascade delete to be on for the relationship.

(Inherited from CascadableNavigationPropertyConfiguration)
WillCascadeOnDelete(Boolean)

Configures whether or not cascade delete is on for the relationship.

(Inherited from CascadableNavigationPropertyConfiguration)

Applies to