Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataEntity / System / Data / Metadata / Edm / AssociationType.cs / 1 / AssociationType.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....], [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Data.Common; using System.Text; using System.Threading; using System.Diagnostics; namespace System.Data.Metadata.Edm { ////// Represents the Edm Association Type /// public sealed class AssociationType : RelationshipType { #region Constructors ////// Initializes a new instance of Association Type with the given name, namespace, version and ends /// /// name of the association type /// namespace of the association type /// version of the association type /// dataSpace in which this AssociationType belongs to ///Thrown if either the name, namespace or version attributes are null internal AssociationType(string name, string namespaceName, DataSpace dataSpace) : base(name, namespaceName, dataSpace) { _referentialConstraints = new ReadOnlyMetadataCollection(new MetadataCollection ()); } #endregion #region Fields private readonly ReadOnlyMetadataCollection _referentialConstraints; private FilteredReadOnlyMetadataCollection _associationEndMembers; #endregion #region Properties /// /// Returns the kind of the type /// public override BuiltInTypeKind BuiltInTypeKind { get { return BuiltInTypeKind.AssociationType; } } ////// Returns the list of ends for this association type /// public ReadOnlyMetadataCollectionAssociationEndMembers { get { Debug.Assert(IsReadOnly, "this is a wrapper around this.Members, don't call it during metadata loading, only call it after the metadata is set to readonly"); if (null == _associationEndMembers) { Interlocked.CompareExchange(ref _associationEndMembers, new FilteredReadOnlyMetadataCollection ( this.Members, Helper.IsAssociationEndMember), null); } return _associationEndMembers; } } /// /// Returns the list of constraints for this association type /// [MetadataProperty(BuiltInTypeKind.ReferentialConstraint, true)] public ReadOnlyMetadataCollectionReferentialConstraints { get { return _referentialConstraints; } } #endregion #region Methods /// /// Validates a EdmMember object to determine if it can be added to this type's /// Members collection. If this method returns without throwing, it is assumed /// the member is valid. /// /// The member to validate ///Thrown if the member is not an AssociationEndMember internal override void ValidateMemberForAdd(EdmMember member) { if (!(member is AssociationEndMember)) { throw EntityUtil.AssociationInvalidMembers(); } } ////// Sets this item to be readonly, once this is set, the item will never be writable again. /// internal override void SetReadOnly() { if (!IsReadOnly) { base.SetReadOnly(); this.ReferentialConstraints.Source.SetReadOnly(); } } ////// Add the given referential constraint to the collection of referential constraints /// /// internal void AddReferentialConstraint(ReferentialConstraint referentialConstraint) { this.ReferentialConstraints.Source.Add(referentialConstraint); } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....], [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Data.Common; using System.Text; using System.Threading; using System.Diagnostics; namespace System.Data.Metadata.Edm { ////// Represents the Edm Association Type /// public sealed class AssociationType : RelationshipType { #region Constructors ////// Initializes a new instance of Association Type with the given name, namespace, version and ends /// /// name of the association type /// namespace of the association type /// version of the association type /// dataSpace in which this AssociationType belongs to ///Thrown if either the name, namespace or version attributes are null internal AssociationType(string name, string namespaceName, DataSpace dataSpace) : base(name, namespaceName, dataSpace) { _referentialConstraints = new ReadOnlyMetadataCollection(new MetadataCollection ()); } #endregion #region Fields private readonly ReadOnlyMetadataCollection _referentialConstraints; private FilteredReadOnlyMetadataCollection _associationEndMembers; #endregion #region Properties /// /// Returns the kind of the type /// public override BuiltInTypeKind BuiltInTypeKind { get { return BuiltInTypeKind.AssociationType; } } ////// Returns the list of ends for this association type /// public ReadOnlyMetadataCollectionAssociationEndMembers { get { Debug.Assert(IsReadOnly, "this is a wrapper around this.Members, don't call it during metadata loading, only call it after the metadata is set to readonly"); if (null == _associationEndMembers) { Interlocked.CompareExchange(ref _associationEndMembers, new FilteredReadOnlyMetadataCollection ( this.Members, Helper.IsAssociationEndMember), null); } return _associationEndMembers; } } /// /// Returns the list of constraints for this association type /// [MetadataProperty(BuiltInTypeKind.ReferentialConstraint, true)] public ReadOnlyMetadataCollectionReferentialConstraints { get { return _referentialConstraints; } } #endregion #region Methods /// /// Validates a EdmMember object to determine if it can be added to this type's /// Members collection. If this method returns without throwing, it is assumed /// the member is valid. /// /// The member to validate ///Thrown if the member is not an AssociationEndMember internal override void ValidateMemberForAdd(EdmMember member) { if (!(member is AssociationEndMember)) { throw EntityUtil.AssociationInvalidMembers(); } } ////// Sets this item to be readonly, once this is set, the item will never be writable again. /// internal override void SetReadOnly() { if (!IsReadOnly) { base.SetReadOnly(); this.ReferentialConstraints.Source.SetReadOnly(); } } ////// Add the given referential constraint to the collection of referential constraints /// /// internal void AddReferentialConstraint(ReferentialConstraint referentialConstraint) { this.ReferentialConstraints.Source.Add(referentialConstraint); } #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
- XmlDataSourceNodeDescriptor.cs
- XmlSchemaNotation.cs
- WebPartVerb.cs
- XmlElementAttributes.cs
- FieldToken.cs
- FactoryGenerator.cs
- ForceCopyBuildProvider.cs
- MemberRelationshipService.cs
- EpmContentSerializerBase.cs
- VirtualPathUtility.cs
- GCHandleCookieTable.cs
- FileReservationCollection.cs
- CultureSpecificStringDictionary.cs
- RichTextBoxConstants.cs
- RuleCache.cs
- PagerSettings.cs
- DataServiceHostWrapper.cs
- MissingSatelliteAssemblyException.cs
- BasicViewGenerator.cs
- XomlCompilerParameters.cs
- DataGridColumnsPage.cs
- AsyncCompletedEventArgs.cs
- BitmapEffectInputData.cs
- Span.cs
- COMException.cs
- SoapDocumentMethodAttribute.cs
- BaseCollection.cs
- IDQuery.cs
- SessionSymmetricTransportSecurityProtocolFactory.cs
- WebPartTransformerAttribute.cs
- SecurityCredentialsManager.cs
- AppDomainProtocolHandler.cs
- RuntimeCompatibilityAttribute.cs
- Property.cs
- ItemCheckEvent.cs
- XmlSerializerNamespaces.cs
- ContextDataSource.cs
- RepeatBehaviorConverter.cs
- CoTaskMemUnicodeSafeHandle.cs
- DataGrid.cs
- DataGridViewCell.cs
- TextFormatterImp.cs
- ComboBoxRenderer.cs
- BinaryReader.cs
- XPathException.cs
- StatusBar.cs
- util.cs
- ZipIOExtraFieldPaddingElement.cs
- WhereQueryOperator.cs
- ActivatableWorkflowsQueryResult.cs
- XmlSchemaDatatype.cs
- QueryProcessor.cs
- TagPrefixInfo.cs
- DbConnectionHelper.cs
- XmlSerializer.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- SqlUserDefinedTypeAttribute.cs
- TraceListeners.cs
- HostSecurityManager.cs
- MetadataHelper.cs
- linebase.cs
- KnownBoxes.cs
- ComAdminWrapper.cs
- LogicalCallContext.cs
- AssemblySettingAttributes.cs
- BasicHttpBindingElement.cs
- Focus.cs
- QueryGeneratorBase.cs
- WebServiceHost.cs
- DispatcherFrame.cs
- HttpPostProtocolReflector.cs
- StubHelpers.cs
- COM2ExtendedBrowsingHandler.cs
- NumberFormatter.cs
- AutoGeneratedFieldProperties.cs
- TreeNodeConverter.cs
- dataSvcMapFileLoader.cs
- TypeUtils.cs
- HtmlLink.cs
- TextEditorThreadLocalStore.cs
- DataGridViewDesigner.cs
- WinCategoryAttribute.cs
- ArgumentNullException.cs
- ObjectDataSource.cs
- LinqDataSourceInsertEventArgs.cs
- SecurityKeyUsage.cs
- RadioButtonStandardAdapter.cs
- UnsafeNativeMethodsPenimc.cs
- CanonicalFontFamilyReference.cs
- Rss20FeedFormatter.cs
- DbProviderFactoriesConfigurationHandler.cs
- AddInAttribute.cs
- XhtmlStyleClass.cs
- RawStylusInputReport.cs
- HyperLinkStyle.cs
- Exceptions.cs
- RadioButtonBaseAdapter.cs
- TableItemPattern.cs
- PersonalizationProvider.cs
- FileUtil.cs