Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataEntity / System / Data / Objects / DataClasses / RelationshipNavigation.cs / 1 / RelationshipNavigation.cs
//----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// @owner [....]
// @backupOwner [....]
//---------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Data.Common;
using System.Globalization;
using System.Text;
namespace System.Data.Objects.DataClasses
{
///
/// This class describes a relationship navigation from the
/// navigation property on one entity to another entity. It is
/// used throughout the collections and refs system to describe a
/// relationship and to connect from the navigation property on
/// one end of a relationship to the navigation property on the
/// other end.
///
// devnote: Might be able to change this back to a valuetype given its current purpose
[Serializable]
internal class RelationshipNavigation
{
// ------------
// Constructors
// ------------
///
/// Creates a navigation object with the given relationship
/// name, role name for the source and role name for the
/// destination.
///
/// Canonical-space name of the relationship.
/// Name of the role/navigation property which is the source of the navigation.
/// Name of the role/navigation property which is the destination of the navigation.
internal RelationshipNavigation(string relationshipName, string from, string to)
{
EntityUtil.CheckStringArgument(relationshipName, "relationshipName");
EntityUtil.CheckStringArgument(from, "from");
EntityUtil.CheckStringArgument(to, "to");
_relationshipName = relationshipName;
_from = from;
_to = to;
}
// ------
// Fields
// ------
// The following fields are serialized. Adding or removing a serialized field is considered
// a breaking change. This includes changing the field type or field name of existing
// serialized fields. If you need to make this kind of change, it may be possible, but it
// will require some custom serialization/deserialization code.
private readonly string _relationshipName;
private readonly string _from;
private readonly string _to;
[NonSerialized]
private RelationshipNavigation _reverse;
// ----------
// Properties
// ----------
///
/// Canonical-space relationship name.
///
internal string RelationshipName
{
get
{
return _relationshipName;
}
}
///
/// Role/navigation property name for the source of this navigation.
///
internal string From
{
get
{
return _from;
}
}
///
/// Role/navigation property name for the destination of this navigation.
///
internal string To
{
get
{
return _to;
}
}
///
/// The "reverse" version of this navigation.
///
internal RelationshipNavigation Reverse
{
get
{
if (_reverse == null)
{
// the reverse relationship is exactly like this
// one but from & to are switched
_reverse = new RelationshipNavigation(_relationshipName, _to, _from);
}
return _reverse;
}
}
///
/// Compares this instance to a given Navigation by their values.
///
public override bool Equals(object obj)
{
RelationshipNavigation compareTo = obj as RelationshipNavigation;
return ((this == compareTo)
|| ((null != this) && (null != compareTo)
&& (this.RelationshipName == compareTo.RelationshipName)
&& (this.From == compareTo.From)
&& (this.To == compareTo.To)));
}
///
/// Returns a value-based hash code.
///
/// the hash value of this Navigation
public override int GetHashCode()
{
return this.RelationshipName.GetHashCode();
}
// -------
// Methods
// -------
///
/// ToString is provided to simplify debugging, etc.
///
public override string ToString()
{
return String.Format(CultureInfo.InvariantCulture,
"RelationshipNavigation: ({0},{1},{2})",
_relationshipName,
_from,
_to);
}
}
}
// 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.Data.Common;
using System.Globalization;
using System.Text;
namespace System.Data.Objects.DataClasses
{
///
/// This class describes a relationship navigation from the
/// navigation property on one entity to another entity. It is
/// used throughout the collections and refs system to describe a
/// relationship and to connect from the navigation property on
/// one end of a relationship to the navigation property on the
/// other end.
///
// devnote: Might be able to change this back to a valuetype given its current purpose
[Serializable]
internal class RelationshipNavigation
{
// ------------
// Constructors
// ------------
///
/// Creates a navigation object with the given relationship
/// name, role name for the source and role name for the
/// destination.
///
/// Canonical-space name of the relationship.
/// Name of the role/navigation property which is the source of the navigation.
/// Name of the role/navigation property which is the destination of the navigation.
internal RelationshipNavigation(string relationshipName, string from, string to)
{
EntityUtil.CheckStringArgument(relationshipName, "relationshipName");
EntityUtil.CheckStringArgument(from, "from");
EntityUtil.CheckStringArgument(to, "to");
_relationshipName = relationshipName;
_from = from;
_to = to;
}
// ------
// Fields
// ------
// The following fields are serialized. Adding or removing a serialized field is considered
// a breaking change. This includes changing the field type or field name of existing
// serialized fields. If you need to make this kind of change, it may be possible, but it
// will require some custom serialization/deserialization code.
private readonly string _relationshipName;
private readonly string _from;
private readonly string _to;
[NonSerialized]
private RelationshipNavigation _reverse;
// ----------
// Properties
// ----------
///
/// Canonical-space relationship name.
///
internal string RelationshipName
{
get
{
return _relationshipName;
}
}
///
/// Role/navigation property name for the source of this navigation.
///
internal string From
{
get
{
return _from;
}
}
///
/// Role/navigation property name for the destination of this navigation.
///
internal string To
{
get
{
return _to;
}
}
///
/// The "reverse" version of this navigation.
///
internal RelationshipNavigation Reverse
{
get
{
if (_reverse == null)
{
// the reverse relationship is exactly like this
// one but from & to are switched
_reverse = new RelationshipNavigation(_relationshipName, _to, _from);
}
return _reverse;
}
}
///
/// Compares this instance to a given Navigation by their values.
///
public override bool Equals(object obj)
{
RelationshipNavigation compareTo = obj as RelationshipNavigation;
return ((this == compareTo)
|| ((null != this) && (null != compareTo)
&& (this.RelationshipName == compareTo.RelationshipName)
&& (this.From == compareTo.From)
&& (this.To == compareTo.To)));
}
///
/// Returns a value-based hash code.
///
/// the hash value of this Navigation
public override int GetHashCode()
{
return this.RelationshipName.GetHashCode();
}
// -------
// Methods
// -------
///
/// ToString is provided to simplify debugging, etc.
///
public override string ToString()
{
return String.Format(CultureInfo.InvariantCulture,
"RelationshipNavigation: ({0},{1},{2})",
_relationshipName,
_from,
_to);
}
}
}
// 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
- ServicesExceptionNotHandledEventArgs.cs
- FixedSOMPage.cs
- Calendar.cs
- StylusCollection.cs
- CheckBoxRenderer.cs
- ListBoxItemWrapperAutomationPeer.cs
- FilterException.cs
- PropertyKey.cs
- WizardStepCollectionEditor.cs
- MethodToken.cs
- AccessDataSource.cs
- AffineTransform3D.cs
- SystemDiagnosticsSection.cs
- UniqueConstraint.cs
- unsafeIndexingFilterStream.cs
- InfoCardProofToken.cs
- XhtmlBasicPageAdapter.cs
- storepermissionattribute.cs
- Control.cs
- RefreshPropertiesAttribute.cs
- MobileUserControlDesigner.cs
- BaseHashHelper.cs
- NativeMethods.cs
- PieceNameHelper.cs
- XPathNodeIterator.cs
- HtmlInputHidden.cs
- FormView.cs
- HtmlInputSubmit.cs
- XmlILStorageConverter.cs
- SqlMetaData.cs
- ThreadStateException.cs
- TransformProviderWrapper.cs
- ForEachAction.cs
- SqlDataAdapter.cs
- BasicViewGenerator.cs
- MultiplexingDispatchMessageFormatter.cs
- OneOfScalarConst.cs
- NegatedCellConstant.cs
- RoutingChannelExtension.cs
- PrimitiveDataContract.cs
- RunClient.cs
- PartBasedPackageProperties.cs
- DatasetMethodGenerator.cs
- _LoggingObject.cs
- COM2Properties.cs
- OleDbCommandBuilder.cs
- RequiredAttributeAttribute.cs
- Config.cs
- ByteArrayHelperWithString.cs
- RegexCompilationInfo.cs
- WeakReferenceList.cs
- PerspectiveCamera.cs
- DictionaryGlobals.cs
- TagMapInfo.cs
- VersionedStreamOwner.cs
- Transactions.cs
- SiteMapProvider.cs
- SocketPermission.cs
- ResizeGrip.cs
- XmlAttributeCollection.cs
- ExpressionBindingCollection.cs
- PackageStore.cs
- AutoResetEvent.cs
- AppDomainResourcePerfCounters.cs
- HttpListener.cs
- ExtensibleClassFactory.cs
- XhtmlTextWriter.cs
- CompiledQueryCacheEntry.cs
- XmlBoundElement.cs
- ALinqExpressionVisitor.cs
- SystemIPInterfaceProperties.cs
- HwndKeyboardInputProvider.cs
- WebPartExportVerb.cs
- PromptStyle.cs
- DynamicRenderer.cs
- ScriptResourceHandler.cs
- Size3D.cs
- SR.Designer.cs
- ModifyActivitiesPropertyDescriptor.cs
- DataListItemCollection.cs
- OrderablePartitioner.cs
- DrawingContextDrawingContextWalker.cs
- HtmlInputImage.cs
- SystemWebExtensionsSectionGroup.cs
- PersonalizationStateInfoCollection.cs
- TypeSystemProvider.cs
- XmlAttributeCollection.cs
- Control.cs
- TreeNodeStyleCollection.cs
- FactoryGenerator.cs
- DiscoveryVersionConverter.cs
- LogReserveAndAppendState.cs
- SqlDataSourceConnectionPanel.cs
- DbConnectionPoolGroupProviderInfo.cs
- RegexRunnerFactory.cs
- ExeContext.cs
- _NestedSingleAsyncResult.cs
- AesManaged.cs
- _CookieModule.cs
- SizeAnimationBase.cs