Share via


NavigationPropertyConfiguration Class

 

Represents the configuration for a navigation property of an entity type.

Namespace:   System.Web.OData.Builder
Assembly:  System.Web.OData (in System.Web.OData.dll)

Inheritance Hierarchy

System.Object
  System.Web.OData.Builder.PropertyConfiguration
    System.Web.OData.Builder.NavigationPropertyConfiguration

Syntax

public class NavigationPropertyConfiguration : PropertyConfiguration
public ref class NavigationPropertyConfiguration : PropertyConfiguration
type NavigationPropertyConfiguration = 
    class
        inherit PropertyConfiguration
    end
Public Class NavigationPropertyConfiguration
    Inherits PropertyConfiguration

Constructors

Name Description
System_CAPS_pubmethod NavigationPropertyConfiguration(PropertyInfo, EdmMultiplicity, EntityTypeConfiguration)

Initializes a new instance of the NavigationPropertyConfiguration class.

Properties

Name Description
System_CAPS_pubproperty AddedExplicitly

Gets or sets a value that is true if the property was added by the user; false if it was inferred through conventions.(Inherited from PropertyConfiguration.)

System_CAPS_pubproperty AutoExpand

Gets or sets whether the property is automatically expanded. default is false. (Inherited from PropertyConfiguration.)

System_CAPS_pubproperty ContainsTarget

Gets whether this navigation property is a containment, default to false.

System_CAPS_pubproperty DeclaringEntityType

Gets the declaring entity type.

System_CAPS_pubproperty DeclaringType

Gets the declaring type.(Inherited from PropertyConfiguration.)

System_CAPS_pubproperty DependentProperties

Gets the foreign keys in the referential constraint of this navigation property.

System_CAPS_pubproperty IsRestricted

Gets whether the property is restricted, i.e. not filterable, not sortable, not navigable, not expandable, or not countable.(Inherited from PropertyConfiguration.)

System_CAPS_pubproperty Kind

Gets the PropertyKind of this property. (Overrides PropertyConfiguration.Kind.)

System_CAPS_pubproperty Multiplicity

Gets the EdmMultiplicity of this navigation property.

System_CAPS_pubproperty Name

Gets or sets the name of the property.(Inherited from PropertyConfiguration.)

System_CAPS_pubproperty NonFilterable

Gets or sets whether the property is nonfilterable. default is false.(Inherited from PropertyConfiguration.)

System_CAPS_pubproperty NotCountable

Gets or sets whether the property is not countable. default is false.(Inherited from PropertyConfiguration.)

System_CAPS_pubproperty NotExpandable

Gets or sets whether the property is not expandable. default is false.(Inherited from PropertyConfiguration.)

System_CAPS_pubproperty NotFilterable

Gets or sets whether the property is not filterable. default is false.(Inherited from PropertyConfiguration.)

System_CAPS_pubproperty NotNavigable

Gets or sets whether the property is not navigable. default is false.(Inherited from PropertyConfiguration.)

System_CAPS_pubproperty NotSortable

Gets or sets whether the property is not sortable. default is false.(Inherited from PropertyConfiguration.)

System_CAPS_pubproperty OnDeleteAction

Gets or sets the delete action for this navigation property.

System_CAPS_pubproperty PrincipalProperties

Gets the target keys in the referential constraint of this navigation property.

System_CAPS_pubproperty PropertyInfo

Gets the mapping CLR PropertyInfo.(Inherited from PropertyConfiguration.)

System_CAPS_pubproperty RelatedClrType

Gets the backing CLR type of this property type. (Overrides PropertyConfiguration.RelatedClrType.)

System_CAPS_pubproperty Unsortable

Gets or sets whether the property is unsortable. default is false.(Inherited from PropertyConfiguration.)

Methods

Name Description
System_CAPS_pubmethod AutomaticallyExpand()

Marks the navigation property is automatic expanded.

System_CAPS_pubmethod CascadeOnDelete()

Configures cascade delete to be on for the navigation property.

System_CAPS_pubmethod CascadeOnDelete(Boolean)

Configures whether or not cascade delete is on for the navigation property.

System_CAPS_pubmethod Contained()

Marks the navigation property as containment.

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod HasConstraint(KeyValuePair<PropertyInfo, PropertyInfo>)

Configures the referential constraint with the dependent and principal property pair.

System_CAPS_pubmethod HasConstraint(PropertyInfo, PropertyInfo)

Configures the referential constraint with the specified and .

System_CAPS_pubmethod IsCountable()

Sets the property as countable.(Inherited from PropertyConfiguration.)

System_CAPS_pubmethod IsExpandable()

Sets the property as expandable.(Inherited from PropertyConfiguration.)

System_CAPS_pubmethod IsFilterable()

Sets the property as filterable.(Inherited from PropertyConfiguration.)

System_CAPS_pubmethod IsNavigable()

Sets the property as navigable.(Inherited from PropertyConfiguration.)

System_CAPS_pubmethod IsNonFilterable()

Sets the property as nonfilterable.(Inherited from PropertyConfiguration.)

System_CAPS_pubmethod IsNotCountable()

Sets the property as not countable.(Inherited from PropertyConfiguration.)

System_CAPS_pubmethod IsNotExpandable()

Sets the property as not expandable.(Inherited from PropertyConfiguration.)

System_CAPS_pubmethod IsNotFilterable()

Sets the property as not filterable.(Inherited from PropertyConfiguration.)

System_CAPS_pubmethod IsNotNavigable()

Sets the property as not navigable.(Inherited from PropertyConfiguration.)

System_CAPS_pubmethod IsNotSortable()

Sets the property as not sortable.(Inherited from PropertyConfiguration.)

System_CAPS_pubmethod IsSortable()

Sets the property as sortable.(Inherited from PropertyConfiguration.)

System_CAPS_pubmethod IsUnsortable()

Sets the property as unsortable.(Inherited from PropertyConfiguration.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod NonContained()

Marks the navigation property as non-contained.

System_CAPS_pubmethod Optional()

Marks the navigation property as optional.

System_CAPS_pubmethod Required()

Marks the navigation property as required.

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Remarks

This configuration functionality is exposed by the model builder Fluent API, see ODataModelBuilder.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

System.Web.OData.Builder Namespace

Return to top