Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataEntity / System / Data / Metadata / Edm / AssociationSet.cs / 1 / AssociationSet.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....], [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Diagnostics; using System.Text; namespace System.Data.Metadata.Edm { ////// Class for representing an Association set /// public sealed class AssociationSet : RelationshipSet { #region Constructors ////// Initializes a new instance of AssocationSet with the given name and the association type /// /// The name of the Assocation set /// The association type of the entities that this associationship set type contains internal AssociationSet(string name, AssociationType associationType) : base(name, null, null, null, associationType) { } #endregion #region Fields private readonly ReadOnlyMetadataCollection_associationSetEnds = new ReadOnlyMetadataCollection (new MetadataCollection ()); #endregion #region Properties /// /// Returns the association type associated with this association set /// public new AssociationType ElementType { get { return (AssociationType)base.ElementType; } } ////// Returns the ends of the association set /// [MetadataProperty(BuiltInTypeKind.AssociationSetEnd, true)] public ReadOnlyMetadataCollectionAssociationSetEnds { get { return _associationSetEnds; } } /// /// Returns the kind of the type /// public override BuiltInTypeKind BuiltInTypeKind { get { return BuiltInTypeKind.AssociationSet; } } #endregion #region Methods ////// Sets this item to be readonly, once this is set, the item will never be writable again. /// internal override void SetReadOnly() { if (!this.IsReadOnly) { base.SetReadOnly(); this.AssociationSetEnds.Source.SetReadOnly(); } } ////// Adds the given end to the collection of ends /// /// internal void AddAssociationSetEnd(AssociationSetEnd associationSetEnd) { this.AssociationSetEnds.Source.Add(associationSetEnd); } #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.Diagnostics; using System.Text; namespace System.Data.Metadata.Edm { ////// Class for representing an Association set /// public sealed class AssociationSet : RelationshipSet { #region Constructors ////// Initializes a new instance of AssocationSet with the given name and the association type /// /// The name of the Assocation set /// The association type of the entities that this associationship set type contains internal AssociationSet(string name, AssociationType associationType) : base(name, null, null, null, associationType) { } #endregion #region Fields private readonly ReadOnlyMetadataCollection_associationSetEnds = new ReadOnlyMetadataCollection (new MetadataCollection ()); #endregion #region Properties /// /// Returns the association type associated with this association set /// public new AssociationType ElementType { get { return (AssociationType)base.ElementType; } } ////// Returns the ends of the association set /// [MetadataProperty(BuiltInTypeKind.AssociationSetEnd, true)] public ReadOnlyMetadataCollectionAssociationSetEnds { get { return _associationSetEnds; } } /// /// Returns the kind of the type /// public override BuiltInTypeKind BuiltInTypeKind { get { return BuiltInTypeKind.AssociationSet; } } #endregion #region Methods ////// Sets this item to be readonly, once this is set, the item will never be writable again. /// internal override void SetReadOnly() { if (!this.IsReadOnly) { base.SetReadOnly(); this.AssociationSetEnds.Source.SetReadOnly(); } } ////// Adds the given end to the collection of ends /// /// internal void AddAssociationSetEnd(AssociationSetEnd associationSetEnd) { this.AssociationSetEnds.Source.Add(associationSetEnd); } #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
- XmlSchemaSequence.cs
- CallbackValidator.cs
- MeasureData.cs
- SerializationEventsCache.cs
- DynamicDiscoveryDocument.cs
- ConfigsHelper.cs
- Accessible.cs
- HttpConfigurationSystem.cs
- AppDomain.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- ControlIdConverter.cs
- TableItemProviderWrapper.cs
- GenericParameterDataContract.cs
- RtfControlWordInfo.cs
- ResizeGrip.cs
- SoapCodeExporter.cs
- FileStream.cs
- DataSourceConverter.cs
- ContractMapping.cs
- WebPartCloseVerb.cs
- EqualityComparer.cs
- TableStyle.cs
- ScrollViewer.cs
- CryptoProvider.cs
- _TransmitFileOverlappedAsyncResult.cs
- ParameterEditorUserControl.cs
- SubpageParaClient.cs
- AsyncOperationManager.cs
- DBBindings.cs
- TargetPerspective.cs
- ViewgenGatekeeper.cs
- BooleanSwitch.cs
- ApplicationId.cs
- ValueConversionAttribute.cs
- SupportingTokenDuplexChannel.cs
- NativeMethods.cs
- TemplateControl.cs
- NativeMethods.cs
- EdmType.cs
- OleDbConnection.cs
- CacheOutputQuery.cs
- EventToken.cs
- ExpressionDumper.cs
- MenuItem.cs
- MailAddressCollection.cs
- TreeNodeConverter.cs
- CloseCollectionAsyncResult.cs
- TryExpression.cs
- RuntimeIdentifierPropertyAttribute.cs
- DesignerActionListCollection.cs
- NamespaceCollection.cs
- SafeBitVector32.cs
- PathGeometry.cs
- AssociationSetMetadata.cs
- SqlUDTStorage.cs
- Nodes.cs
- ContextItemManager.cs
- RootNamespaceAttribute.cs
- ellipse.cs
- HtmlButton.cs
- HandlerWithFactory.cs
- HtmlProps.cs
- SizeKeyFrameCollection.cs
- PixelShader.cs
- ThicknessConverter.cs
- Opcode.cs
- NativeMethods.cs
- milrender.cs
- ReferencedType.cs
- InternalConfigEventArgs.cs
- WindowsIdentity.cs
- Maps.cs
- HttpContextWrapper.cs
- ThreadExceptionDialog.cs
- ToolStripComboBox.cs
- PersonalizationProvider.cs
- DeflateInput.cs
- HttpResponseInternalWrapper.cs
- TreeIterator.cs
- Variable.cs
- TraceFilter.cs
- SQLMoneyStorage.cs
- SoapClientProtocol.cs
- PathFigure.cs
- TransformDescriptor.cs
- ConsoleKeyInfo.cs
- GroupBoxAutomationPeer.cs
- ConfigurationStrings.cs
- DBDataPermission.cs
- TrimSurroundingWhitespaceAttribute.cs
- UnicastIPAddressInformationCollection.cs
- RelationshipManager.cs
- MaterialGroup.cs
- SerializationEventsCache.cs
- CustomAttribute.cs
- SqlProfileProvider.cs
- FontEmbeddingManager.cs
- DateTimeFormatInfo.cs
- CodeMethodInvokeExpression.cs
- ProxyWebPartConnectionCollection.cs