ComplexTypeConfiguration Class
Allows configuration to be performed for a complex type in a model. A ComplexTypeConfiguration can be obtained by using the method ComplexType<TComplexType>.
Namespace: System.Web.OData.Builder
Assembly: System.Web.OData (in System.Web.OData.dll)
Inheritance Hierarchy
System.Object
System.Web.OData.Builder.StructuralTypeConfiguration
System.Web.OData.Builder.ComplexTypeConfiguration
Syntax
public class ComplexTypeConfiguration : StructuralTypeConfiguration
public ref class ComplexTypeConfiguration : StructuralTypeConfiguration
type ComplexTypeConfiguration =
class
inherit StructuralTypeConfiguration
end
Public Class ComplexTypeConfiguration
Inherits StructuralTypeConfiguration
Constructors
Name | Description | |
---|---|---|
ComplexTypeConfiguration() | Initializes a new instance of the ComplexTypeConfiguration class. |
|
ComplexTypeConfiguration(ODataModelBuilder, Type) | Initializes a new instance of the ComplexTypeConfiguration class.
|
Properties
Name | Description | |
---|---|---|
AddedExplicitly | Gets or sets a value that is true if the type's name or namespace was set by the user; false if it was inferred through conventions. (Inherited from StructuralTypeConfiguration.) |
|
BaseType | Gets or sets the base type of this complex type. |
|
BaseTypeConfigured | Gets a value that represents whether the base type is explicitly configured or inferred. (Inherited from StructuralTypeConfiguration.) |
|
BaseTypeInternal | Gets the base type of this structural type. (Inherited from StructuralTypeConfiguration.) |
|
ClrType | Gets the backing CLR Type. (Inherited from StructuralTypeConfiguration.) |
|
DynamicPropertyDictionary | Gets the CLR property info of the dynamic property dictionary on this structural type. (Inherited from StructuralTypeConfiguration.) |
|
ExplicitProperties | Gets the collection of explicitly added properties. (Inherited from StructuralTypeConfiguration.) |
|
FullName | Gets the full name of this edm type. (Inherited from StructuralTypeConfiguration.) |
|
IgnoredProperties | Gets the properties from the backing CLR type that are to be ignored on this edm type. (Inherited from StructuralTypeConfiguration.) |
|
IsAbstract | Gets or sets a value indicating whether this type is abstract. (Inherited from StructuralTypeConfiguration.) |
|
IsOpen | Gets a value indicating whether this type is open or not. (Inherited from StructuralTypeConfiguration.) |
|
Kind | (Overrides StructuralTypeConfiguration.Kind.) |
|
ModelBuilder | The ODataModelBuilder. (Inherited from StructuralTypeConfiguration.) |
|
Name | Gets or sets the name of this EDM type. (Inherited from StructuralTypeConfiguration.) |
|
Namespace | Gets or sets the namespace of this EDM type. (Inherited from StructuralTypeConfiguration.) |
|
Properties | Gets the declared properties on this edm type. (Inherited from StructuralTypeConfiguration.) |
|
RemovedProperties | Gets the collection of explicitly removed properties. (Inherited from StructuralTypeConfiguration.) |
Methods
Name | Description | |
---|---|---|
Abstract() | Marks this complex type as abstract. |
|
AddCollectionProperty(PropertyInfo) | Adds a collection property to this edm type. (Inherited from StructuralTypeConfiguration.) |
|
AddComplexProperty(PropertyInfo) | Adds a complex property to this edm type. (Inherited from StructuralTypeConfiguration.) |
|
AddDynamicPropertyDictionary(PropertyInfo) | Adds the property info of the dynamic properties to this structural type. (Inherited from StructuralTypeConfiguration.) |
|
AddEnumProperty(PropertyInfo) | Adds an enum property to this edm type. (Inherited from StructuralTypeConfiguration.) |
|
AddProperty(PropertyInfo) | Adds a primitive property to this edm type. (Inherited from StructuralTypeConfiguration.) |
|
DerivesFrom(ComplexTypeConfiguration) | Sets the base type of this complex type. |
|
DerivesFromNothing() | Sets the base type of this complex type to null meaning that this complex type does not derive from anything. |
|
Equals(Object) | (Inherited from Object.) |
|
Finalize() | (Inherited from Object.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
MemberwiseClone() | (Inherited from Object.) |
|
RemoveProperty(PropertyInfo) | Removes the given property. (Inherited from StructuralTypeConfiguration.) |
|
ToString() | (Inherited from Object.) |
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