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 / Common / EntitySql / AliasExpr.cs / 1 / AliasExpr.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// Represents a possibly aliased expression. /// internal sealed class AliasExpr : Expr { private Expr _expr; private Identifier _aliasId; internal AliasExpr( Expr expr , Identifier aliasId ) { ValidateAlias(aliasId); _aliasId = aliasId; _expr = expr; } internal AliasExpr( Expr expr ) { _expr = expr; } ////// returns true if expression is aliased, false otherwise /// internal bool HasAlias { get { return ( null != _aliasId ); } } ////// returns expression alias identifier, or null if not aliased /// internal Identifier AliasIdentifier { get { return _aliasId; } } ////// returns expression /// internal Expr Expr { get { return _expr; } } ////// validates alias identifier /// /// private static void ValidateAlias(Identifier aliasIdentifier) { if (String.IsNullOrEmpty(aliasIdentifier.Name)) { throw EntityUtil.EntitySqlError(aliasIdentifier.ErrCtx, System.Data.Entity.Strings.InvalidEmptyIdentifier); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// Represents a possibly aliased expression. /// internal sealed class AliasExpr : Expr { private Expr _expr; private Identifier _aliasId; internal AliasExpr( Expr expr , Identifier aliasId ) { ValidateAlias(aliasId); _aliasId = aliasId; _expr = expr; } internal AliasExpr( Expr expr ) { _expr = expr; } ////// returns true if expression is aliased, false otherwise /// internal bool HasAlias { get { return ( null != _aliasId ); } } ////// returns expression alias identifier, or null if not aliased /// internal Identifier AliasIdentifier { get { return _aliasId; } } ////// returns expression /// internal Expr Expr { get { return _expr; } } ////// validates alias identifier /// /// private static void ValidateAlias(Identifier aliasIdentifier) { if (String.IsNullOrEmpty(aliasIdentifier.Name)) { throw EntityUtil.EntitySqlError(aliasIdentifier.ErrCtx, System.Data.Entity.Strings.InvalidEmptyIdentifier); } } } } // 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
- ExtendedProtectionPolicyElement.cs
- HttpTransportSecurityElement.cs
- CryptoProvider.cs
- ThicknessKeyFrameCollection.cs
- UrlRoutingModule.cs
- SqlFunctionAttribute.cs
- ForeignConstraint.cs
- ListenerElementsCollection.cs
- CompositeFontFamily.cs
- EntityClientCacheEntry.cs
- PageThemeCodeDomTreeGenerator.cs
- EntityDesignerUtils.cs
- WebPartDisplayMode.cs
- ScrollData.cs
- HTMLTagNameToTypeMapper.cs
- Classification.cs
- ValueExpressions.cs
- WindowsTokenRoleProvider.cs
- ServicePointManagerElement.cs
- ActivitySurrogateSelector.cs
- SqlDataSourceCommandParser.cs
- ToolStripOverflowButton.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- CreateUserErrorEventArgs.cs
- MenuItemStyleCollection.cs
- AttributeCollection.cs
- RegexNode.cs
- MergeLocalizationDirectives.cs
- SQLMembershipProvider.cs
- IPPacketInformation.cs
- BindValidator.cs
- FormsAuthenticationModule.cs
- ContextMenu.cs
- SSmlParser.cs
- BoundPropertyEntry.cs
- HttpCachePolicyElement.cs
- WebConfigurationHost.cs
- unsafenativemethodstextservices.cs
- PassportAuthentication.cs
- WizardPanelChangingEventArgs.cs
- UriTemplateMatchException.cs
- AuthenticationManager.cs
- CopyNamespacesAction.cs
- QEncodedStream.cs
- DataListDesigner.cs
- PolicyManager.cs
- _LocalDataStore.cs
- CqlIdentifiers.cs
- BindingObserver.cs
- CultureTable.cs
- MemoryFailPoint.cs
- EventHandlerList.cs
- RectangleConverter.cs
- ExpandCollapseProviderWrapper.cs
- CodeTypeReference.cs
- TextSchema.cs
- ItemChangedEventArgs.cs
- CheckBoxRenderer.cs
- LoaderAllocator.cs
- ProxySimple.cs
- TemplateParser.cs
- XPathPatternParser.cs
- MatrixStack.cs
- BaseAppDomainProtocolHandler.cs
- PagePropertiesChangingEventArgs.cs
- LayoutTableCell.cs
- RegexGroup.cs
- JumpPath.cs
- ObjectDataSourceEventArgs.cs
- TypeToken.cs
- DetailsViewUpdateEventArgs.cs
- CodeAttributeArgumentCollection.cs
- StringAttributeCollection.cs
- SystemDiagnosticsSection.cs
- CompositeActivityCodeGenerator.cs
- ProxyWebPartConnectionCollection.cs
- SubtreeProcessor.cs
- DataSourceXmlSerializationAttribute.cs
- SchemaTableColumn.cs
- WindowPatternIdentifiers.cs
- TextEditorDragDrop.cs
- TableItemPatternIdentifiers.cs
- RichTextBoxAutomationPeer.cs
- SourceItem.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- AutomationEvent.cs
- XmlObjectSerializerReadContextComplex.cs
- ProgressBarBrushConverter.cs
- SplineKeyFrames.cs
- DateTimePicker.cs
- PackageDigitalSignature.cs
- QilPatternVisitor.cs
- GeometryCombineModeValidation.cs
- DirectionalLight.cs
- ZipPackage.cs
- NetTcpBindingElement.cs
- DiscoveryRequestHandler.cs
- Material.cs
- StrokeNodeOperations2.cs
- RichTextBoxContextMenu.cs