Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / EntitySql / AST / QueryStatement.cs / 1305376 / QueryStatement.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql.AST { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// Represents query statement AST. /// internal sealed class QueryStatement : Statement { private readonly NodeList_functionDefList; private readonly Node _expr; /// /// Initializes query statement. /// /// optional function definitions /// query top level expression internal QueryStatement(NodeListfunctionDefList, Node expr) { _functionDefList = functionDefList; _expr = expr; } /// /// Returns optional function defintions. May be null. /// internal NodeListFunctionDefList { get { return _functionDefList; } } /// /// Returns query top-level expression. /// internal Node Expr { get { return _expr; } } } } // 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
- RoleManagerSection.cs
- ApplicationSecurityInfo.cs
- EarlyBoundInfo.cs
- RectangleGeometry.cs
- DetailsViewCommandEventArgs.cs
- DataGridViewControlCollection.cs
- LiteralDesigner.cs
- DesignerDataColumn.cs
- EntityDataSourceColumn.cs
- MimeWriter.cs
- commandenforcer.cs
- GenericIdentity.cs
- RemoteWebConfigurationHostServer.cs
- SqlOuterApplyReducer.cs
- OleDbMetaDataFactory.cs
- BamlStream.cs
- Double.cs
- ConditionalBranch.cs
- BooleanToSelectiveScrollingOrientationConverter.cs
- IndentTextWriter.cs
- HttpResponse.cs
- TreeViewItem.cs
- DataViewManagerListItemTypeDescriptor.cs
- RadioButtonStandardAdapter.cs
- HttpModuleAction.cs
- SelectionListComponentEditor.cs
- HttpHeaderCollection.cs
- DefaultEventAttribute.cs
- NotificationContext.cs
- AssemblySettingAttributes.cs
- ApplicationInfo.cs
- NativeMethods.cs
- LinqDataSource.cs
- StylusLogic.cs
- SynchronizationContext.cs
- DataViewManagerListItemTypeDescriptor.cs
- BinaryParser.cs
- QueueAccessMode.cs
- ChildChangedEventArgs.cs
- TextEditorCharacters.cs
- XmlSerializerVersionAttribute.cs
- HttpTransportSecurityElement.cs
- UnknownBitmapEncoder.cs
- QuaternionValueSerializer.cs
- Convert.cs
- FontNamesConverter.cs
- RegisteredArrayDeclaration.cs
- ColorTranslator.cs
- AsymmetricKeyExchangeDeformatter.cs
- CommonObjectSecurity.cs
- GridView.cs
- Throw.cs
- ServicePointManagerElement.cs
- SqlDataSourceFilteringEventArgs.cs
- AffineTransform3D.cs
- TemplateControlParser.cs
- EventProviderBase.cs
- RangeBaseAutomationPeer.cs
- Rule.cs
- CAGDesigner.cs
- rsa.cs
- PropertyChangeTracker.cs
- RuntimeIdentifierPropertyAttribute.cs
- CodeAttributeDeclaration.cs
- WorkflowMarkupElementEventArgs.cs
- DecoderReplacementFallback.cs
- FontCacheLogic.cs
- ArrayItemValue.cs
- control.ime.cs
- XhtmlTextWriter.cs
- CancellationTokenSource.cs
- WindowClosedEventArgs.cs
- DrawingAttributesDefaultValueFactory.cs
- ImageDrawing.cs
- XmlSignatureProperties.cs
- ComponentEditorForm.cs
- CustomErrorsSection.cs
- PackWebRequestFactory.cs
- Nodes.cs
- MultiAsyncResult.cs
- ToolboxComponentsCreatingEventArgs.cs
- WindowAutomationPeer.cs
- DurableServiceAttribute.cs
- SamlAuthenticationClaimResource.cs
- PropertySegmentSerializationProvider.cs
- StringAnimationUsingKeyFrames.cs
- PropertyChangedEventManager.cs
- Random.cs
- _NestedSingleAsyncResult.cs
- SystemEvents.cs
- WsatTransactionFormatter.cs
- StylusCaptureWithinProperty.cs
- BidPrivateBase.cs
- EntityContainerEmitter.cs
- GrammarBuilderBase.cs
- DbConnectionPoolGroup.cs
- XmlDocumentType.cs
- PropertySourceInfo.cs
- StatusBarDrawItemEvent.cs
- InvalidCommandTreeException.cs