Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Metadata / Edm / NavigationProperty.cs / 1305376 / NavigationProperty.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Collections.Generic; using System.Data.Common; using System.Diagnostics; using System.Threading; using System.Linq; namespace System.Data.Metadata.Edm { ////// Represent the edm navigation property class /// public sealed class NavigationProperty : EdmMember { #region Constructors ////// Initializes a new instance of the navigation property class /// /// name of the navigation property /// TypeUsage object containing the navigation property type and its facets ///Thrown if name or typeUsage arguments are null ///Thrown if name argument is empty string internal NavigationProperty(string name, TypeUsage typeUsage) : base(name, typeUsage) { EntityUtil.CheckStringArgument(name, "name"); EntityUtil.GenericCheckArgumentNull(typeUsage, "typeUsage"); _accessor = new NavigationPropertyAccessor(name); } ////// Initializes a new OSpace instance of the property class /// /// name of the property /// TypeUsage object containing the property type and its facets /// for the property internal NavigationProperty(string name, TypeUsage typeUsage, System.Reflection.PropertyInfo propertyInfo) : this(name, typeUsage) { System.Diagnostics.Debug.Assert(name == propertyInfo.Name, "different PropertyName?"); if (null != propertyInfo) { System.Reflection.MethodInfo method; method = propertyInfo.GetGetMethod(); PropertyGetterHandle = ((null != method) ? method.MethodHandle : default(System.RuntimeMethodHandle)); } } #endregion ////// Returns the kind of the type /// public override BuiltInTypeKind BuiltInTypeKind { get { return BuiltInTypeKind.NavigationProperty; } } #region Fields internal const string RelationshipTypeNamePropertyName = "RelationshipType"; internal const string ToEndMemberNamePropertyName = "ToEndMember"; private RelationshipType _relationshipType; private RelationshipEndMember _toEndMember; private RelationshipEndMember _fromEndMember; ///Store the handle, allowing the PropertyInfo/MethodInfo/Type references to be GC'd internal readonly System.RuntimeMethodHandle PropertyGetterHandle; ///cached dynamic methods to access the property values from a CLR instance private readonly NavigationPropertyAccessor _accessor; #endregion ////// Gets/Sets the relationship type that this navigation property operates on /// ///Thrown if the NavigationProperty instance is in ReadOnly state [MetadataProperty(BuiltInTypeKind.RelationshipType, false)] public RelationshipType RelationshipType { get { return _relationshipType; } internal set { _relationshipType = value; } } ////// Gets/Sets the to relationship end member in the navigation /// ///Thrown if the NavigationProperty instance is in ReadOnly state [MetadataProperty(BuiltInTypeKind.RelationshipEndMember, false)] public RelationshipEndMember ToEndMember { get { return _toEndMember; } internal set { _toEndMember = value; } } ////// Gets/Sets the from relationship end member in the navigation /// ///Thrown if the NavigationProperty instance is in ReadOnly state [MetadataProperty(BuiltInTypeKind.RelationshipEndMember, false)] public RelationshipEndMember FromEndMember { get { return _fromEndMember; } internal set { _fromEndMember = value; } } internal NavigationPropertyAccessor Accessor { get { return _accessor; } } ////// Where the given navigation property is on the dependent end of a referential constraint, /// returns the foreign key properties. Otherwise, returns an empty set. We will return the members in the order /// of the principal end key properties. /// ///Foreign key properties public IEnumerableGetDependentProperties() { // Get the declared type AssociationType associationType = (AssociationType)this.RelationshipType; Debug.Assert( associationType.ReferentialConstraints != null, "ReferenceConstraints cannot be null"); if (associationType.ReferentialConstraints.Count > 0) { ReferentialConstraint rc = associationType.ReferentialConstraints[0]; RelationshipEndMember dependentEndMember = rc.ToRole; if (dependentEndMember.EdmEquals(this.FromEndMember)) { //Order the dependant properties in the order of principal end's key members. var keyMembers = rc.FromRole.GetEntityType().KeyMembers; var dependantProperties = new List (keyMembers.Count); for (int i = 0; i < keyMembers.Count; i++) { dependantProperties.Add(rc.ToProperties[rc.FromProperties.IndexOf(((EdmProperty)keyMembers[i]))]); } return dependantProperties.AsReadOnly(); } } return Enumerable.Empty (); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Collections.Generic; using System.Data.Common; using System.Diagnostics; using System.Threading; using System.Linq; namespace System.Data.Metadata.Edm { ////// Represent the edm navigation property class /// public sealed class NavigationProperty : EdmMember { #region Constructors ////// Initializes a new instance of the navigation property class /// /// name of the navigation property /// TypeUsage object containing the navigation property type and its facets ///Thrown if name or typeUsage arguments are null ///Thrown if name argument is empty string internal NavigationProperty(string name, TypeUsage typeUsage) : base(name, typeUsage) { EntityUtil.CheckStringArgument(name, "name"); EntityUtil.GenericCheckArgumentNull(typeUsage, "typeUsage"); _accessor = new NavigationPropertyAccessor(name); } ////// Initializes a new OSpace instance of the property class /// /// name of the property /// TypeUsage object containing the property type and its facets /// for the property internal NavigationProperty(string name, TypeUsage typeUsage, System.Reflection.PropertyInfo propertyInfo) : this(name, typeUsage) { System.Diagnostics.Debug.Assert(name == propertyInfo.Name, "different PropertyName?"); if (null != propertyInfo) { System.Reflection.MethodInfo method; method = propertyInfo.GetGetMethod(); PropertyGetterHandle = ((null != method) ? method.MethodHandle : default(System.RuntimeMethodHandle)); } } #endregion ////// Returns the kind of the type /// public override BuiltInTypeKind BuiltInTypeKind { get { return BuiltInTypeKind.NavigationProperty; } } #region Fields internal const string RelationshipTypeNamePropertyName = "RelationshipType"; internal const string ToEndMemberNamePropertyName = "ToEndMember"; private RelationshipType _relationshipType; private RelationshipEndMember _toEndMember; private RelationshipEndMember _fromEndMember; ///Store the handle, allowing the PropertyInfo/MethodInfo/Type references to be GC'd internal readonly System.RuntimeMethodHandle PropertyGetterHandle; ///cached dynamic methods to access the property values from a CLR instance private readonly NavigationPropertyAccessor _accessor; #endregion ////// Gets/Sets the relationship type that this navigation property operates on /// ///Thrown if the NavigationProperty instance is in ReadOnly state [MetadataProperty(BuiltInTypeKind.RelationshipType, false)] public RelationshipType RelationshipType { get { return _relationshipType; } internal set { _relationshipType = value; } } ////// Gets/Sets the to relationship end member in the navigation /// ///Thrown if the NavigationProperty instance is in ReadOnly state [MetadataProperty(BuiltInTypeKind.RelationshipEndMember, false)] public RelationshipEndMember ToEndMember { get { return _toEndMember; } internal set { _toEndMember = value; } } ////// Gets/Sets the from relationship end member in the navigation /// ///Thrown if the NavigationProperty instance is in ReadOnly state [MetadataProperty(BuiltInTypeKind.RelationshipEndMember, false)] public RelationshipEndMember FromEndMember { get { return _fromEndMember; } internal set { _fromEndMember = value; } } internal NavigationPropertyAccessor Accessor { get { return _accessor; } } ////// Where the given navigation property is on the dependent end of a referential constraint, /// returns the foreign key properties. Otherwise, returns an empty set. We will return the members in the order /// of the principal end key properties. /// ///Foreign key properties public IEnumerableGetDependentProperties() { // Get the declared type AssociationType associationType = (AssociationType)this.RelationshipType; Debug.Assert( associationType.ReferentialConstraints != null, "ReferenceConstraints cannot be null"); if (associationType.ReferentialConstraints.Count > 0) { ReferentialConstraint rc = associationType.ReferentialConstraints[0]; RelationshipEndMember dependentEndMember = rc.ToRole; if (dependentEndMember.EdmEquals(this.FromEndMember)) { //Order the dependant properties in the order of principal end's key members. var keyMembers = rc.FromRole.GetEntityType().KeyMembers; var dependantProperties = new List (keyMembers.Count); for (int i = 0; i < keyMembers.Count; i++) { dependantProperties.Add(rc.ToProperties[rc.FromProperties.IndexOf(((EdmProperty)keyMembers[i]))]); } return dependantProperties.AsReadOnly(); } } return Enumerable.Empty (); } } } // 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
- OracleParameterCollection.cs
- DockPanel.cs
- SignatureHelper.cs
- ErrorInfoXmlDocument.cs
- ComAdminInterfaces.cs
- PropertiesTab.cs
- WMICapabilities.cs
- Decimal.cs
- BitmapEffectGroup.cs
- DesignTimeParseData.cs
- CategoryAttribute.cs
- WhitespaceRuleLookup.cs
- InspectionWorker.cs
- WorkflowExecutor.cs
- ReferencedCollectionType.cs
- SqlConnection.cs
- BitmapData.cs
- Pair.cs
- CodeCatchClauseCollection.cs
- FormViewModeEventArgs.cs
- Propagator.JoinPropagator.cs
- ProvidersHelper.cs
- ListViewItemEventArgs.cs
- MatrixAnimationBase.cs
- DocumentsTrace.cs
- FontWeightConverter.cs
- RowToFieldTransformer.cs
- FormViewUpdatedEventArgs.cs
- KeySpline.cs
- WindowsAuthenticationModule.cs
- IdentityModelStringsVersion1.cs
- SEHException.cs
- ObjectQueryExecutionPlan.cs
- SqlCachedBuffer.cs
- NgenServicingAttributes.cs
- TransactionProtocol.cs
- ValueUnavailableException.cs
- MaterialCollection.cs
- DbConnectionInternal.cs
- StdRegProviderWrapper.cs
- GroupDescription.cs
- ColumnWidthChangedEvent.cs
- DrawListViewSubItemEventArgs.cs
- ContainerSelectorActiveEvent.cs
- Util.cs
- SapiAttributeParser.cs
- ContentPosition.cs
- ListArgumentProvider.cs
- QueryStringParameter.cs
- TagMapCollection.cs
- ParameterModifier.cs
- ProtectedProviderSettings.cs
- NameValueConfigurationCollection.cs
- RegexCapture.cs
- SrgsRule.cs
- PropertyGrid.cs
- AppDomainUnloadedException.cs
- Pen.cs
- TimeSpanConverter.cs
- QueryPageSettingsEventArgs.cs
- Overlapped.cs
- LogicalExpr.cs
- XmlSchemaSubstitutionGroup.cs
- Annotation.cs
- AutomationTextAttribute.cs
- StylusCollection.cs
- TraceListeners.cs
- GenericWebPart.cs
- BuildProvider.cs
- WebRequestModuleElement.cs
- SpotLight.cs
- HttpVersion.cs
- SchemaInfo.cs
- TextOutput.cs
- ClientProtocol.cs
- StateRuntime.cs
- HMACRIPEMD160.cs
- MsmqHostedTransportConfiguration.cs
- ObjectIDGenerator.cs
- DataGridViewButtonColumn.cs
- FlowDocumentPageViewerAutomationPeer.cs
- XamlWriter.cs
- Task.cs
- WebHttpDispatchOperationSelectorData.cs
- XamlReaderHelper.cs
- MultiAsyncResult.cs
- ImageDrawing.cs
- XmlNotation.cs
- StylusButtonCollection.cs
- SimpleExpression.cs
- ContextMenu.cs
- SqlSupersetValidator.cs
- XmlWriterTraceListener.cs
- CookieParameter.cs
- GeometryModel3D.cs
- SafeFileMappingHandle.cs
- SystemFonts.cs
- VarRemapper.cs
- RangeBase.cs
- XmlILModule.cs