CollectionKind 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.
Represents an enumeration that specifies the kind of the collection that is applied to the properties in the conceptual schema definition language (CSDL) files. You can apply this to the properties of any type.
public enum class CollectionKind
public enum CollectionKind
type CollectionKind =
Public Enum CollectionKind
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 0 | The property is not a collection. |
Bag | 1 | The collection has bag semantics. The items are unordered and duplicates are acceptable. |
List | 2 | The collection has list semantics. The order of the items is deterministic and duplicates are acceptable. |