IEdmTypeConfiguration Interface
Represents an EdmType.
Namespace: System.Web.Http.OData.Builder
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
'Declaration
Public Interface IEdmTypeConfiguration
'Usage
Dim instance As IEdmTypeConfiguration
public interface IEdmTypeConfiguration
public interface class IEdmTypeConfiguration
type IEdmTypeConfiguration = interface end
public interface IEdmTypeConfiguration
The IEdmTypeConfiguration type exposes the following members.
Properties
Name | Description | |
---|---|---|
ClrType | The CLR type associated with the EdmType. | |
FullName | The full name (including namespace) of the EdmType. | |
Kind | The kind of the EdmType. Examples include EntityType, ComplexType, PrimitiveType, CollectionType. | |
ModelBuilder | The ODataModelBuilder used to create this IEdmType. | |
Name | The name of the EdmType. | |
Namespace | The namespace of the EdmType. |
Top