Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataEntity / System / Data / EntityModel / SchemaObjectModel / KeyProperty.cs / 2 / KeyProperty.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Data.Metadata.Edm; namespace System.Data.EntityModel.SchemaObjectModel { ////// Represents PropertyRef Element for Entity keys and referential constraints /// internal sealed class PropertyRefElement : SchemaElement { #region Instance Fields private StructuredProperty _property = null; #endregion #region Public Methods ////// construct a KeyProperty object /// /// public PropertyRefElement(SchemaElement parentElement) : base(parentElement) { } #endregion #region Public Properties ////// property chain from KeyedType to Leaf property /// public StructuredProperty Property { get { return _property; } } #endregion #region Private Methods internal override void ResolveTopLevelNames() { Debug.Assert(false, "This method should never be used. Use other overload instead"); } ////// Since this method can be used in different context, this method does not add any errors /// Please make sure that the caller of this methods handles the error case and add errors /// appropriately /// /// ///internal bool ResolveNames(SchemaEntityType entityType) { if (string.IsNullOrEmpty(this.Name)) { // Don't flag this error. This must already must have flaged as error, while handling name attribute return true; } // Make sure there is a property by this name _property = entityType.FindProperty(this.Name); return (_property != null); } #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; using System.Collections.Generic; using System.Diagnostics; using System.Data.Metadata.Edm; namespace System.Data.EntityModel.SchemaObjectModel { ////// Represents PropertyRef Element for Entity keys and referential constraints /// internal sealed class PropertyRefElement : SchemaElement { #region Instance Fields private StructuredProperty _property = null; #endregion #region Public Methods ////// construct a KeyProperty object /// /// public PropertyRefElement(SchemaElement parentElement) : base(parentElement) { } #endregion #region Public Properties ////// property chain from KeyedType to Leaf property /// public StructuredProperty Property { get { return _property; } } #endregion #region Private Methods internal override void ResolveTopLevelNames() { Debug.Assert(false, "This method should never be used. Use other overload instead"); } ////// Since this method can be used in different context, this method does not add any errors /// Please make sure that the caller of this methods handles the error case and add errors /// appropriately /// /// ///internal bool ResolveNames(SchemaEntityType entityType) { if (string.IsNullOrEmpty(this.Name)) { // Don't flag this error. This must already must have flaged as error, while handling name attribute return true; } // Make sure there is a property by this name _property = entityType.FindProperty(this.Name); return (_property != null); } #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
- KeyPressEvent.cs
- SchemaName.cs
- DBConnection.cs
- WebServiceParameterData.cs
- WindowsListViewItem.cs
- Pen.cs
- AttributeAction.cs
- AuthenticateEventArgs.cs
- ItemCheckedEvent.cs
- ImageClickEventArgs.cs
- RenderingEventArgs.cs
- ProviderConnectionPoint.cs
- NotifyParentPropertyAttribute.cs
- DataObjectEventArgs.cs
- ExpressionWriter.cs
- Vector3DAnimation.cs
- XmlBuffer.cs
- StorageEndPropertyMapping.cs
- QueryCacheKey.cs
- ConfigXmlSignificantWhitespace.cs
- TextHintingModeValidation.cs
- XPathArrayIterator.cs
- GenericPrincipal.cs
- XNodeNavigator.cs
- AsyncOperationManager.cs
- CompilerHelpers.cs
- HostingEnvironmentException.cs
- MarginsConverter.cs
- DynamicArgumentDesigner.xaml.cs
- HMACSHA384.cs
- CheckBoxBaseAdapter.cs
- DataGridViewCellConverter.cs
- MatrixStack.cs
- ToolStripDesigner.cs
- StorageComplexPropertyMapping.cs
- DataControlButton.cs
- DocumentProperties.cs
- DataGridTextBoxColumn.cs
- PageHandlerFactory.cs
- DataGridViewBand.cs
- UserPreferenceChangingEventArgs.cs
- MethodBuilderInstantiation.cs
- TextTrailingCharacterEllipsis.cs
- EventMap.cs
- IssuanceLicense.cs
- IconConverter.cs
- Facet.cs
- CapabilitiesPattern.cs
- PriorityQueue.cs
- FileUtil.cs
- ComponentDispatcher.cs
- ProjectionPruner.cs
- SoapExtensionTypeElementCollection.cs
- UniqueIdentifierService.cs
- ThreadAttributes.cs
- controlskin.cs
- X509Certificate2.cs
- TrackingServices.cs
- SchemaImporter.cs
- XmlWriterTraceListener.cs
- ToggleButtonAutomationPeer.cs
- ActivityXamlServices.cs
- TextComposition.cs
- InstanceOwnerException.cs
- LinearGradientBrush.cs
- QuaternionRotation3D.cs
- PreviewPrintController.cs
- AnnotationMap.cs
- HandledEventArgs.cs
- DataSourceXmlSerializer.cs
- SynchronizedDisposablePool.cs
- CodeTypeReferenceSerializer.cs
- SqlServer2KCompatibilityCheck.cs
- TagElement.cs
- InlineCollection.cs
- RelationshipFixer.cs
- ISessionStateStore.cs
- DataGridCell.cs
- ScaleTransform3D.cs
- RelationshipEndCollection.cs
- ProcessModuleCollection.cs
- Color.cs
- __Filters.cs
- AmbiguousMatchException.cs
- ManifestBasedResourceGroveler.cs
- ConfigPathUtility.cs
- XPathBinder.cs
- Base64WriteStateInfo.cs
- ListViewHitTestInfo.cs
- EntityDataSourceSelectingEventArgs.cs
- Route.cs
- Nullable.cs
- StylusEditingBehavior.cs
- WmlPhoneCallAdapter.cs
- NullReferenceException.cs
- TabPanel.cs
- Debug.cs
- SoapCodeExporter.cs
- AxisAngleRotation3D.cs
- TreeNodeCollection.cs