Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / EntityModel / SchemaObjectModel / NavigationProperty.cs / 1305376 / NavigationProperty.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Xml; using System.Data; using System.Data.Metadata.Edm; using System.Diagnostics; using System.Globalization; namespace System.Data.EntityModel.SchemaObjectModel { ////// Summary description for Association. /// [System.Diagnostics.DebuggerDisplay("Name={Name}, Relationship={_unresolvedRelationshipName}, FromRole={_unresolvedFromEndRole}, ToRole={_unresolvedToEndRole}")] internal sealed class NavigationProperty : Property { private string _unresolvedFromEndRole = null; private string _unresolvedToEndRole = null; private string _unresolvedRelationshipName = null; private IRelationshipEnd _fromEnd = null; private IRelationshipEnd _toEnd = null; private IRelationship _relationship = null; ////// /// /// public NavigationProperty(SchemaEntityType parent) : base(parent) { } ////// /// public new SchemaEntityType ParentElement { get { return base.ParentElement as SchemaEntityType; } } internal IRelationship Relationship { get { return _relationship; } } internal IRelationshipEnd ToEnd { get { return _toEnd; } } internal IRelationshipEnd FromEnd { get { return _fromEnd; } } ////// Gets the Type of the property /// public override SchemaType Type { get { if (_toEnd == null || _toEnd.Type == null) { return null; } return _toEnd.Type; } } protected override bool HandleAttribute(XmlReader reader) { if (base.HandleAttribute(reader)) { return true; } else if (CanHandleAttribute(reader, XmlConstants.Relationship)) { HandleAssociationAttribute(reader); return true; } else if (CanHandleAttribute(reader, XmlConstants.FromRole)) { HandleFromRoleAttribute(reader); return true; } else if (CanHandleAttribute(reader, XmlConstants.ToRole)) { HandleToRoleAttribute(reader); return true; } return false; } ////// /// internal override void ResolveTopLevelNames() { base.ResolveTopLevelNames(); SchemaType element; if (!Schema.ResolveTypeName(this, _unresolvedRelationshipName, out element)) return; _relationship = element as IRelationship; if (_relationship == null) { AddError(ErrorCode.BadNavigationProperty, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.BadNavigationPropertyRelationshipNotRelationship(_unresolvedRelationshipName)); return; } bool foundBothEnds = true; if (!_relationship.TryGetEnd(_unresolvedFromEndRole, out _fromEnd)) { AddError(ErrorCode.BadNavigationProperty, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.BadNavigationPropertyUndefinedRole(_unresolvedFromEndRole, _relationship.FQName)); foundBothEnds = false; } if (!_relationship.TryGetEnd(_unresolvedToEndRole, out _toEnd)) { AddError(ErrorCode.BadNavigationProperty, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.BadNavigationPropertyUndefinedRole(_unresolvedToEndRole, _relationship.FQName)); foundBothEnds = false; } if (foundBothEnds && _fromEnd == _toEnd) { AddError(ErrorCode.BadNavigationProperty, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.BadNavigationPropertyRolesCannotBeTheSame); } } ////// /// internal override void Validate() { base.Validate(); System.Diagnostics.Debug.Assert(_fromEnd != null && _toEnd != null, "FromEnd and ToEnd must not be null in Validate. ResolveNames must have resolved it or added error"); if (_fromEnd.Type != ParentElement) { AddError(ErrorCode.BadNavigationProperty, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.BadNavigationPropertyBadFromRoleType(this.Name, _fromEnd.Type.FQName, _fromEnd.Name, _relationship.FQName, ParentElement.FQName)); } StructuredType type = _toEnd.Type; } #region Private Methods ////// /// /// private void HandleToRoleAttribute(XmlReader reader) { _unresolvedToEndRole = HandleUndottedNameAttribute(reader, _unresolvedToEndRole); } ////// /// /// private void HandleFromRoleAttribute(XmlReader reader) { _unresolvedFromEndRole = HandleUndottedNameAttribute(reader, _unresolvedFromEndRole); } ////// /// /// private void HandleAssociationAttribute(XmlReader reader) { Debug.Assert(_unresolvedRelationshipName == null, string.Format(CultureInfo.CurrentCulture, "{0} is already defined", reader.Name)); string association; if (!Utils.GetDottedName(this.Schema, reader, out association)) return; _unresolvedRelationshipName = association; } #endregion } } // 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.Generic; using System.Xml; using System.Data; using System.Data.Metadata.Edm; using System.Diagnostics; using System.Globalization; namespace System.Data.EntityModel.SchemaObjectModel { ////// Summary description for Association. /// [System.Diagnostics.DebuggerDisplay("Name={Name}, Relationship={_unresolvedRelationshipName}, FromRole={_unresolvedFromEndRole}, ToRole={_unresolvedToEndRole}")] internal sealed class NavigationProperty : Property { private string _unresolvedFromEndRole = null; private string _unresolvedToEndRole = null; private string _unresolvedRelationshipName = null; private IRelationshipEnd _fromEnd = null; private IRelationshipEnd _toEnd = null; private IRelationship _relationship = null; ////// /// /// public NavigationProperty(SchemaEntityType parent) : base(parent) { } ////// /// public new SchemaEntityType ParentElement { get { return base.ParentElement as SchemaEntityType; } } internal IRelationship Relationship { get { return _relationship; } } internal IRelationshipEnd ToEnd { get { return _toEnd; } } internal IRelationshipEnd FromEnd { get { return _fromEnd; } } ////// Gets the Type of the property /// public override SchemaType Type { get { if (_toEnd == null || _toEnd.Type == null) { return null; } return _toEnd.Type; } } protected override bool HandleAttribute(XmlReader reader) { if (base.HandleAttribute(reader)) { return true; } else if (CanHandleAttribute(reader, XmlConstants.Relationship)) { HandleAssociationAttribute(reader); return true; } else if (CanHandleAttribute(reader, XmlConstants.FromRole)) { HandleFromRoleAttribute(reader); return true; } else if (CanHandleAttribute(reader, XmlConstants.ToRole)) { HandleToRoleAttribute(reader); return true; } return false; } ////// /// internal override void ResolveTopLevelNames() { base.ResolveTopLevelNames(); SchemaType element; if (!Schema.ResolveTypeName(this, _unresolvedRelationshipName, out element)) return; _relationship = element as IRelationship; if (_relationship == null) { AddError(ErrorCode.BadNavigationProperty, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.BadNavigationPropertyRelationshipNotRelationship(_unresolvedRelationshipName)); return; } bool foundBothEnds = true; if (!_relationship.TryGetEnd(_unresolvedFromEndRole, out _fromEnd)) { AddError(ErrorCode.BadNavigationProperty, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.BadNavigationPropertyUndefinedRole(_unresolvedFromEndRole, _relationship.FQName)); foundBothEnds = false; } if (!_relationship.TryGetEnd(_unresolvedToEndRole, out _toEnd)) { AddError(ErrorCode.BadNavigationProperty, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.BadNavigationPropertyUndefinedRole(_unresolvedToEndRole, _relationship.FQName)); foundBothEnds = false; } if (foundBothEnds && _fromEnd == _toEnd) { AddError(ErrorCode.BadNavigationProperty, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.BadNavigationPropertyRolesCannotBeTheSame); } } ////// /// internal override void Validate() { base.Validate(); System.Diagnostics.Debug.Assert(_fromEnd != null && _toEnd != null, "FromEnd and ToEnd must not be null in Validate. ResolveNames must have resolved it or added error"); if (_fromEnd.Type != ParentElement) { AddError(ErrorCode.BadNavigationProperty, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.BadNavigationPropertyBadFromRoleType(this.Name, _fromEnd.Type.FQName, _fromEnd.Name, _relationship.FQName, ParentElement.FQName)); } StructuredType type = _toEnd.Type; } #region Private Methods ////// /// /// private void HandleToRoleAttribute(XmlReader reader) { _unresolvedToEndRole = HandleUndottedNameAttribute(reader, _unresolvedToEndRole); } ////// /// /// private void HandleFromRoleAttribute(XmlReader reader) { _unresolvedFromEndRole = HandleUndottedNameAttribute(reader, _unresolvedFromEndRole); } ////// /// /// private void HandleAssociationAttribute(XmlReader reader) { Debug.Assert(_unresolvedRelationshipName == null, string.Format(CultureInfo.CurrentCulture, "{0} is already defined", reader.Name)); string association; if (!Utils.GetDottedName(this.Schema, reader, out association)) return; _unresolvedRelationshipName = association; } #endregion } } // 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
- MembershipAdapter.cs
- MsmqDiagnostics.cs
- MenuTracker.cs
- ClientConfigurationSystem.cs
- ExpandCollapsePatternIdentifiers.cs
- StatusBarDrawItemEvent.cs
- OutOfProcStateClientManager.cs
- Expr.cs
- DocumentSequence.cs
- GZipStream.cs
- UserControlAutomationPeer.cs
- StaticSiteMapProvider.cs
- PathSegmentCollection.cs
- LineServices.cs
- ConvertersCollection.cs
- PropertyFilterAttribute.cs
- Point.cs
- XmlWriterSettings.cs
- PerfCounterSection.cs
- MULTI_QI.cs
- InProcStateClientManager.cs
- ConstrainedDataObject.cs
- DiscreteKeyFrames.cs
- Decorator.cs
- RawStylusActions.cs
- DbConnectionPoolIdentity.cs
- ListViewItemMouseHoverEvent.cs
- SqlAliaser.cs
- CodeBinaryOperatorExpression.cs
- TableRowCollection.cs
- MarginsConverter.cs
- DictionaryChange.cs
- ProxyFragment.cs
- TypeGenericEnumerableViewSchema.cs
- webclient.cs
- Zone.cs
- TableAdapterManagerMethodGenerator.cs
- PathSegmentCollection.cs
- AsynchronousChannelMergeEnumerator.cs
- SmtpReplyReader.cs
- SpeechUI.cs
- RowUpdatedEventArgs.cs
- shaperfactoryquerycacheentry.cs
- PropertyKey.cs
- StringUtil.cs
- diagnosticsswitches.cs
- OperatingSystemVersionCheck.cs
- StateRuntime.cs
- CaseStatement.cs
- TransportContext.cs
- AutomationElement.cs
- EntityDataSourceQueryBuilder.cs
- BamlRecordWriter.cs
- GridViewCellAutomationPeer.cs
- WebPermission.cs
- HtmlTableRow.cs
- SmtpNetworkElement.cs
- XamlReader.cs
- UnsafeNativeMethods.cs
- Column.cs
- RootBrowserWindow.cs
- SessionStateUtil.cs
- XamlBrushSerializer.cs
- HtmlContainerControl.cs
- BindingContext.cs
- ScalarOps.cs
- InputLanguageManager.cs
- DeflateStream.cs
- wgx_sdk_version.cs
- NameObjectCollectionBase.cs
- TreeNode.cs
- DataViewManager.cs
- TransformConverter.cs
- AnnotationHighlightLayer.cs
- DocumentViewerBaseAutomationPeer.cs
- LogWriteRestartAreaAsyncResult.cs
- AuthenticationModuleElement.cs
- ServiceHttpHandlerFactory.cs
- Pts.cs
- ValidateNames.cs
- BooleanExpr.cs
- ComplexPropertyEntry.cs
- AddressingVersion.cs
- GlyphCache.cs
- WsatServiceCertificate.cs
- UnmanagedMarshal.cs
- TransformerConfigurationWizardBase.cs
- StdValidatorsAndConverters.cs
- PeerCollaborationPermission.cs
- ResourceKey.cs
- ProfileModule.cs
- Expander.cs
- RelationshipType.cs
- FormDesigner.cs
- BrushConverter.cs
- PlanCompiler.cs
- UTF32Encoding.cs
- Animatable.cs
- Int16AnimationBase.cs
- Vars.cs