Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / EntitySql / AST / NavigationExpr.cs / 1305376 / NavigationExpr.cs
//---------------------------------------------------------------------- //// Copyproperty (c) Microsoft Corporation. All propertys reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql.AST { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// Represents a relationship navigation operator NAVIGATE(e,Relation-Type-Name[,ToEndName[,FromEndName]]). /// internal sealed class RelshipNavigationExpr : Node { private readonly Node _fromEntity; private readonly Node _relshipTypeName; private readonly Identifier _toEndIdentifier; private readonly Identifier _fromEndIdentifier; ////// Initializes relationship navigation expression. /// internal RelshipNavigationExpr(Node fromEntity, Node relshipTypeName) { _fromEntity = fromEntity; _relshipTypeName = relshipTypeName; } ////// Initializes relationship navigation expression. /// internal RelshipNavigationExpr(Node fromEntity, Node relshipTypeName, Identifier toEndIdentifier) : this(fromEntity, relshipTypeName) { _toEndIdentifier = toEndIdentifier; } ////// Initializes relationship navigation expression. /// internal RelshipNavigationExpr(Node fromEntity, Node relshipTypeName, Identifier toEndIdentifier, Identifier fromEndIdentifier) : this(fromEntity, relshipTypeName, toEndIdentifier) { _fromEndIdentifier = fromEndIdentifier; } ////// FROM entity. /// internal Node Source { get { return _fromEntity; } } ////// Relship type name. /// internal Node TypeName { get { return _relshipTypeName; } } ////// TO end identifier. /// internal Identifier ToEndIdentifier { get { return _toEndIdentifier; } } ////// FROM end identifier. /// internal Identifier FromEndIdentifier { get { return _fromEndIdentifier; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AudioBase.cs
- IItemProperties.cs
- UnionCodeGroup.cs
- ArrayConverter.cs
- Walker.cs
- PasswordPropertyTextAttribute.cs
- ScriptingAuthenticationServiceSection.cs
- indexingfiltermarshaler.cs
- ACE.cs
- BezierSegment.cs
- FontWeightConverter.cs
- TypeToArgumentTypeConverter.cs
- HttpServerUtilityWrapper.cs
- CustomCredentialPolicy.cs
- RowToFieldTransformer.cs
- BypassElement.cs
- SqlWebEventProvider.cs
- SqlParameter.cs
- Visual3DCollection.cs
- TypeConverterValueSerializer.cs
- SortQuery.cs
- OwnerDrawPropertyBag.cs
- InternalRelationshipCollection.cs
- BamlMapTable.cs
- UIAgentInitializationException.cs
- StdValidatorsAndConverters.cs
- CachedRequestParams.cs
- DataSourceSelectArguments.cs
- ModelItemImpl.cs
- SimpleHandlerFactory.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- ToolStripGrip.cs
- AssemblyContextControlItem.cs
- HttpException.cs
- Directory.cs
- DifferencingCollection.cs
- SubMenuStyleCollection.cs
- OleDbErrorCollection.cs
- SecurityProtocol.cs
- SchemaCollectionCompiler.cs
- ConnectionProviderAttribute.cs
- FragmentQueryKB.cs
- RemotingServices.cs
- HtmlInputText.cs
- IPCCacheManager.cs
- CodeTypeMember.cs
- Collection.cs
- SoapEnumAttribute.cs
- ResourceDisplayNameAttribute.cs
- OleDbCommand.cs
- ConstructorNeedsTagAttribute.cs
- TemplatedMailWebEventProvider.cs
- MonthCalendar.cs
- AliasedSlot.cs
- DataRowExtensions.cs
- DetailsViewDeletedEventArgs.cs
- AstNode.cs
- DecimalFormatter.cs
- SHA384.cs
- Vector3DKeyFrameCollection.cs
- TaskResultSetter.cs
- Icon.cs
- HostingEnvironmentException.cs
- WorkflowMarkupSerializerMapping.cs
- httpstaticobjectscollection.cs
- Faults.cs
- HttpStreamMessage.cs
- MouseButtonEventArgs.cs
- ToolboxDataAttribute.cs
- odbcmetadatacollectionnames.cs
- CompiledQueryCacheEntry.cs
- ExpressionNode.cs
- WindowPatternIdentifiers.cs
- OverflowException.cs
- CheckedPointers.cs
- DrawingContextWalker.cs
- XamlWrapperReaders.cs
- InputReport.cs
- SpecialFolderEnumConverter.cs
- NumericExpr.cs
- SafeNativeMethods.cs
- SimpleBitVector32.cs
- DocumentSchemaValidator.cs
- XmlResolver.cs
- WebInvokeAttribute.cs
- SessionSwitchEventArgs.cs
- GridViewDeletedEventArgs.cs
- EnvelopedPkcs7.cs
- XmlSchemaObjectTable.cs
- OdbcFactory.cs
- InstanceNotReadyException.cs
- PieceNameHelper.cs
- UriSection.cs
- DataGridViewCellLinkedList.cs
- Point3DConverter.cs
- XmlSequenceWriter.cs
- CachedBitmap.cs
- VirtualPath.cs
- Pool.cs
- HtmlMeta.cs