//--------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner jeffreed // @backupOwner anpete //--------------------------------------------------------------------- using System; namespace System.Data.Metadata.Edm { /// /// Kind of collection (applied to Properties) /// public enum CollectionKind { /// /// Property is not a Collection /// None, /// /// Collection has Bag semantics( unordered and duplicates ok) /// Bag, /// /// Collection has List semantics /// (Order is deterministic and duplciates ok) /// List, } }