Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / EntityModel / SchemaObjectModel / EntityKeyElement.cs / 1305376 / EntityKeyElement.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Diagnostics; using System.Xml; using System.Data; using System.Data.Metadata.Edm; using System.Data.Entity; namespace System.Data.EntityModel.SchemaObjectModel { ////// Represents an Key element in an EntityType element. /// internal sealed class EntityKeyElement : SchemaElement { private List_keyProperties; /// /// Constructs an EntityContainerAssociationSetEnd /// /// Reference to the schema element. public EntityKeyElement( SchemaEntityType parentElement ) : base( parentElement ) { } public IListKeyProperties { get { if (_keyProperties == null) { _keyProperties = new List (); } return _keyProperties; } } protected override bool HandleAttribute(XmlReader reader) { return false; } protected override bool HandleElement(XmlReader reader) { if (base.HandleElement(reader)) { return true; } else if (CanHandleElement(reader, XmlConstants.PropertyRef)) { HandlePropertyRefElement(reader); return true; } return false; } /// /// /// /// private void HandlePropertyRefElement(XmlReader reader) { PropertyRefElement property = new PropertyRefElement((SchemaEntityType)ParentElement); property.Parse(reader); this.KeyProperties.Add(property); } ////// Used during the resolve phase to resolve the type name to the object that represents that type /// internal override void ResolveTopLevelNames() { Debug.Assert(_keyProperties != null, "xsd should have verified that there should be atleast one property ref element"); foreach (PropertyRefElement property in _keyProperties) { if (!property.ResolveNames((SchemaEntityType)this.ParentElement)) { AddError(ErrorCode.InvalidKey, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.InvalidKeyNoProperty(this.ParentElement.FQName, property.Name)); } } } ////// Validate all the key properties /// internal override void Validate() { Debug.Assert(_keyProperties != null, "xsd should have verified that there should be atleast one property ref element"); DictionarypropertyLookUp = new Dictionary (StringComparer.Ordinal); foreach (PropertyRefElement keyProperty in _keyProperties) { StructuredProperty property = keyProperty.Property; Debug.Assert(property != null, "This should never be null, since if we were not able to resolve, we should have never reached to this point"); if (propertyLookUp.ContainsKey(property.Name)) { AddError(ErrorCode.DuplicatePropertySpecifiedInEntityKey, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.DuplicatePropertyNameSpecifiedInEntityKey(this.ParentElement.FQName, property.Name)); continue; } propertyLookUp.Add(property.Name, keyProperty); if (property.Nullable) { AddError(ErrorCode.InvalidKey, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.InvalidKeyNullablePart(property.Name, this.ParentElement.Name)); } // currently we only support key properties of scalar type if ((!(property.Type is ScalarType)) || (property.CollectionKind != CollectionKind.None)) { AddError(ErrorCode.EntityKeyMustBeScalar, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.EntityKeyMustBeScalar(property.Name, this.ParentElement.Name)); continue; } Debug.Assert(property.TypeUsage != null, "For scalar type, typeusage must be initialized"); // Bug 484200: Binary type key properties are currently not supported. PrimitiveTypeKind kind = ((PrimitiveType)property.TypeUsage.EdmType).PrimitiveTypeKind; if (kind == PrimitiveTypeKind.Binary) { if (Schema.DataModel == SchemaDataModelOption.EntityDataModel) { // Binary keys are only supported for V2.0 CSDL if (Schema.SchemaVersion < XmlConstants.EdmVersionForV2) { AddError(ErrorCode.BinaryEntityKeyCurrentlyNotSupported, EdmSchemaErrorSeverity.Error, Strings.EntityKeyTypeCurrentlyNotSupported(property.Name, this.ParentElement.FQName, kind)); } } else { Debug.Assert(SchemaDataModelOption.ProviderDataModel == Schema.DataModel, "Invalid DataModel encountered"); // Binary keys are only supported for V2.0 SSDL if (Schema.SchemaVersion < XmlConstants.StoreVersionForV2) { AddError(ErrorCode.BinaryEntityKeyCurrentlyNotSupported, EdmSchemaErrorSeverity.Error, Strings.EntityKeyTypeCurrentlyNotSupportedInSSDL(property.Name, this.ParentElement.FQName, property.TypeUsage.EdmType.Name, property.TypeUsage.EdmType.BaseType.FullName, kind)); } } } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Diagnostics; using System.Xml; using System.Data; using System.Data.Metadata.Edm; using System.Data.Entity; namespace System.Data.EntityModel.SchemaObjectModel { ////// Represents an Key element in an EntityType element. /// internal sealed class EntityKeyElement : SchemaElement { private List_keyProperties; /// /// Constructs an EntityContainerAssociationSetEnd /// /// Reference to the schema element. public EntityKeyElement( SchemaEntityType parentElement ) : base( parentElement ) { } public IListKeyProperties { get { if (_keyProperties == null) { _keyProperties = new List (); } return _keyProperties; } } protected override bool HandleAttribute(XmlReader reader) { return false; } protected override bool HandleElement(XmlReader reader) { if (base.HandleElement(reader)) { return true; } else if (CanHandleElement(reader, XmlConstants.PropertyRef)) { HandlePropertyRefElement(reader); return true; } return false; } /// /// /// /// private void HandlePropertyRefElement(XmlReader reader) { PropertyRefElement property = new PropertyRefElement((SchemaEntityType)ParentElement); property.Parse(reader); this.KeyProperties.Add(property); } ////// Used during the resolve phase to resolve the type name to the object that represents that type /// internal override void ResolveTopLevelNames() { Debug.Assert(_keyProperties != null, "xsd should have verified that there should be atleast one property ref element"); foreach (PropertyRefElement property in _keyProperties) { if (!property.ResolveNames((SchemaEntityType)this.ParentElement)) { AddError(ErrorCode.InvalidKey, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.InvalidKeyNoProperty(this.ParentElement.FQName, property.Name)); } } } ////// Validate all the key properties /// internal override void Validate() { Debug.Assert(_keyProperties != null, "xsd should have verified that there should be atleast one property ref element"); DictionarypropertyLookUp = new Dictionary (StringComparer.Ordinal); foreach (PropertyRefElement keyProperty in _keyProperties) { StructuredProperty property = keyProperty.Property; Debug.Assert(property != null, "This should never be null, since if we were not able to resolve, we should have never reached to this point"); if (propertyLookUp.ContainsKey(property.Name)) { AddError(ErrorCode.DuplicatePropertySpecifiedInEntityKey, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.DuplicatePropertyNameSpecifiedInEntityKey(this.ParentElement.FQName, property.Name)); continue; } propertyLookUp.Add(property.Name, keyProperty); if (property.Nullable) { AddError(ErrorCode.InvalidKey, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.InvalidKeyNullablePart(property.Name, this.ParentElement.Name)); } // currently we only support key properties of scalar type if ((!(property.Type is ScalarType)) || (property.CollectionKind != CollectionKind.None)) { AddError(ErrorCode.EntityKeyMustBeScalar, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.EntityKeyMustBeScalar(property.Name, this.ParentElement.Name)); continue; } Debug.Assert(property.TypeUsage != null, "For scalar type, typeusage must be initialized"); // Bug 484200: Binary type key properties are currently not supported. PrimitiveTypeKind kind = ((PrimitiveType)property.TypeUsage.EdmType).PrimitiveTypeKind; if (kind == PrimitiveTypeKind.Binary) { if (Schema.DataModel == SchemaDataModelOption.EntityDataModel) { // Binary keys are only supported for V2.0 CSDL if (Schema.SchemaVersion < XmlConstants.EdmVersionForV2) { AddError(ErrorCode.BinaryEntityKeyCurrentlyNotSupported, EdmSchemaErrorSeverity.Error, Strings.EntityKeyTypeCurrentlyNotSupported(property.Name, this.ParentElement.FQName, kind)); } } else { Debug.Assert(SchemaDataModelOption.ProviderDataModel == Schema.DataModel, "Invalid DataModel encountered"); // Binary keys are only supported for V2.0 SSDL if (Schema.SchemaVersion < XmlConstants.StoreVersionForV2) { AddError(ErrorCode.BinaryEntityKeyCurrentlyNotSupported, EdmSchemaErrorSeverity.Error, Strings.EntityKeyTypeCurrentlyNotSupportedInSSDL(property.Name, this.ParentElement.FQName, property.TypeUsage.EdmType.Name, property.TypeUsage.EdmType.BaseType.FullName, kind)); } } } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Label.cs
- Lookup.cs
- BasePropertyDescriptor.cs
- Delegate.cs
- MessageDispatch.cs
- ContentPosition.cs
- SqlConnectionPoolGroupProviderInfo.cs
- ActionFrame.cs
- Point3DAnimation.cs
- StringConverter.cs
- ICspAsymmetricAlgorithm.cs
- MemoryRecordBuffer.cs
- WindowsComboBox.cs
- ServiceOperationParameter.cs
- EditingCoordinator.cs
- ControlValuePropertyAttribute.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- FlowSwitchLink.cs
- ConnectionManagementElementCollection.cs
- TextParentUndoUnit.cs
- GeneralTransform.cs
- ReflectionHelper.cs
- ToolStripSettings.cs
- Point3DCollection.cs
- XmlSchemaObjectCollection.cs
- SimpleHandlerBuildProvider.cs
- SQLBytes.cs
- BamlVersionHeader.cs
- DrawingCollection.cs
- DictionaryItemsCollection.cs
- ObjectStorage.cs
- SoapSchemaImporter.cs
- ImportContext.cs
- TextEncodedRawTextWriter.cs
- AsyncOperationManager.cs
- GroupBox.cs
- PathGradientBrush.cs
- MdiWindowListItemConverter.cs
- HtmlElement.cs
- RuntimeWrappedException.cs
- XmlDownloadManager.cs
- XmlElementAttribute.cs
- CompressEmulationStream.cs
- MethodBuilderInstantiation.cs
- processwaithandle.cs
- XmlQueryCardinality.cs
- WebPartEditorCancelVerb.cs
- SmtpException.cs
- WebZone.cs
- OracleParameter.cs
- BitStream.cs
- ViewCellSlot.cs
- CacheAxisQuery.cs
- ObjectTag.cs
- QilExpression.cs
- XmlSchemaDocumentation.cs
- TextDecorationCollectionConverter.cs
- EventWaitHandleSecurity.cs
- ParameterDataSourceExpression.cs
- SecurityTokenException.cs
- XmlSchemaAll.cs
- PluralizationServiceUtil.cs
- TimeSpanConverter.cs
- MarshalByValueComponent.cs
- ObjectDataSourceMethodEventArgs.cs
- RegistryKey.cs
- Error.cs
- RawAppCommandInputReport.cs
- CustomValidator.cs
- SplitContainer.cs
- WsatConfiguration.cs
- OleDbSchemaGuid.cs
- TypeEnumerableViewSchema.cs
- XmlSerializerFormatAttribute.cs
- AppDomainCompilerProxy.cs
- WebPartActionVerb.cs
- Viewport3DVisual.cs
- Transform3DCollection.cs
- TextSerializer.cs
- ProcessDesigner.cs
- FeatureSupport.cs
- BitmapEffectGroup.cs
- Menu.cs
- CodeTypeParameterCollection.cs
- ImageSource.cs
- ProfileGroupSettings.cs
- DataGridTableCollection.cs
- sqlstateclientmanager.cs
- mediaclock.cs
- Perspective.cs
- SQLInt32Storage.cs
- ResourceDictionaryCollection.cs
- CodeTypeOfExpression.cs
- ClientConfigurationHost.cs
- GotoExpression.cs
- DependencyPropertyAttribute.cs
- MouseEventArgs.cs
- RowsCopiedEventArgs.cs
- TripleDES.cs
- Divide.cs