EdmTypeKind Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines EDM metatypes.
public enum EdmTypeKind
type EdmTypeKind =
Public Enum EdmTypeKind
- Inheritance
-
EdmTypeKind
Fields
Name | Value | Description |
---|---|---|
None | 0 | Represents a type with an unknown or error kind. |
Primitive | 1 | Represents a type implementing IEdmPrimitiveType. |
Entity | 2 | Represents a type implementing IEdmEntityType. |
Complex | 3 | Represents a type implementing IEdmComplexType. |
Collection | 4 | Represents a type implementing IEdmCollectionType. |
EntityReference | 5 | Represents a type implementing IEdmEntityReferenceType. |
Enum | 6 | Represents a type implementing IEdmEnumType. |
TypeDefinition | 7 | Represents a type implementing IEdmTypeDefinition. |
Untyped | 8 | Represents a type implementing IEdmUntypedType. |
Path | 9 | Represents a type implementing IEdmPathType. |