//--------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner leil // @backupOwner anpete //--------------------------------------------------------------------- using System; namespace System.Data.Metadata.Edm { /// /// DataSpace /// public enum DataSpace { /// /// OSpace indicates the item in the clr space /// OSpace = 0, /// /// CSpace indicates the item in the CSpace - edm primitive types + /// types defined in csdl /// CSpace = 1, /// /// SSpace indicates the item in the SSpace /// SSpace = 2, /// /// Mapping between OSpace and CSpace /// OCSpace = 3, /// /// Mapping between CSpace and SSpace /// CSSpace = 4 } }