Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataEntity / System / Data / Common / EntitySql / Expr.cs / 2 / Expr.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backup [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; enum AstExprKind { Generic, Query, Insert, Update, Delete } ////// Represents the base type of all Expression Nodes /// internal abstract class Expr : AstNode { internal Expr() : base() { } internal Expr( string query, int inputPos ) : base(query, inputPos) { } internal virtual AstExprKind ExprKind { get { return AstExprKind.Generic; } } } ////// Represents generic list of expressions. /// ///expression type internal sealed class ExprList: Expr, System.Collections.Generic.IEnumerable { private List _exprList = new List (); /// /// default constructor /// internal ExprList() { } ////// initializes adding one item to the list. /// /// expression internal ExprList( T item ) { _exprList.Add(item); } ////// add an expression to the expression list. /// /// Expression ///Updated ExpressionList internal ExprListAdd( T item ) { _exprList.Add(item); return this; } /// /// Returns the list of expressions /// internal ListExpressions { get { return _exprList; } } #if __WHEN_NEEDED__ /// /// Verifies if list elements if of specified type. /// /// instance of a given type ///true if is the same type, false otherwise internal bool IsListOf( object o ) { return o.GetType().Equals( typeof( T ) ); } #endif ////// Returns the number of elements in the list /// internal int Count { get { return _exprList.Count; } } ////// Indexer to the list entries. /// /// integer position of the element in the list ///Expression internal T this[int index] { get { return _exprList[index]; } } #region GetEnumerator System.Collections.Generic.IEnumeratorSystem.Collections.Generic.IEnumerable .GetEnumerator() { return _exprList.GetEnumerator(); } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return _exprList.GetEnumerator(); } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backup [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; enum AstExprKind { Generic, Query, Insert, Update, Delete } ////// Represents the base type of all Expression Nodes /// internal abstract class Expr : AstNode { internal Expr() : base() { } internal Expr( string query, int inputPos ) : base(query, inputPos) { } internal virtual AstExprKind ExprKind { get { return AstExprKind.Generic; } } } ////// Represents generic list of expressions. /// ///expression type internal sealed class ExprList: Expr, System.Collections.Generic.IEnumerable { private List _exprList = new List (); /// /// default constructor /// internal ExprList() { } ////// initializes adding one item to the list. /// /// expression internal ExprList( T item ) { _exprList.Add(item); } ////// add an expression to the expression list. /// /// Expression ///Updated ExpressionList internal ExprListAdd( T item ) { _exprList.Add(item); return this; } /// /// Returns the list of expressions /// internal ListExpressions { get { return _exprList; } } #if __WHEN_NEEDED__ /// /// Verifies if list elements if of specified type. /// /// instance of a given type ///true if is the same type, false otherwise internal bool IsListOf( object o ) { return o.GetType().Equals( typeof( T ) ); } #endif ////// Returns the number of elements in the list /// internal int Count { get { return _exprList.Count; } } ////// Indexer to the list entries. /// /// integer position of the element in the list ///Expression internal T this[int index] { get { return _exprList[index]; } } #region GetEnumerator System.Collections.Generic.IEnumeratorSystem.Collections.Generic.IEnumerable .GetEnumerator() { return _exprList.GetEnumerator(); } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return _exprList.GetEnumerator(); } #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
- EntityModelBuildProvider.cs
- XmlComplianceUtil.cs
- Vector3DIndependentAnimationStorage.cs
- ParseNumbers.cs
- BaseProcessProtocolHandler.cs
- RegionInfo.cs
- SignatureResourceHelper.cs
- GridViewPageEventArgs.cs
- PlatformNotSupportedException.cs
- UndirectedGraph.cs
- Pointer.cs
- DropShadowEffect.cs
- EditorBrowsableAttribute.cs
- UniqueEventHelper.cs
- Identifier.cs
- storepermissionattribute.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- RootContext.cs
- DataContractSerializer.cs
- ImageListUtils.cs
- WindowsGraphics2.cs
- ComNativeDescriptor.cs
- SymbolEqualComparer.cs
- ClickablePoint.cs
- EmptyControlCollection.cs
- AmbientValueAttribute.cs
- SchemaNotation.cs
- MachineKey.cs
- SafeWaitHandle.cs
- BrowserCapabilitiesFactoryBase.cs
- WinInet.cs
- DesignObjectWrapper.cs
- TreeNodeMouseHoverEvent.cs
- DataDocumentXPathNavigator.cs
- RoutedPropertyChangedEventArgs.cs
- OracleConnectionString.cs
- EpmSyndicationContentSerializer.cs
- Profiler.cs
- HttpProfileGroupBase.cs
- MexHttpsBindingCollectionElement.cs
- CancelEventArgs.cs
- RSACryptoServiceProvider.cs
- formatter.cs
- basecomparevalidator.cs
- OleDbStruct.cs
- ShaderRenderModeValidation.cs
- XmlLoader.cs
- TCEAdapterGenerator.cs
- Root.cs
- TextAnchor.cs
- xmlglyphRunInfo.cs
- SystemGatewayIPAddressInformation.cs
- TextElementCollectionHelper.cs
- WorkItem.cs
- TrailingSpaceComparer.cs
- WorkflowInstanceExtensionManager.cs
- CookieParameter.cs
- ObjectRef.cs
- AspNetHostingPermission.cs
- ArglessEventHandlerProxy.cs
- AutomationFocusChangedEventArgs.cs
- EasingQuaternionKeyFrame.cs
- DocumentPageHost.cs
- AuthorizationRule.cs
- NativeMethods.cs
- KeyboardEventArgs.cs
- OperationAbortedException.cs
- GradientStop.cs
- AutomationElementIdentifiers.cs
- linebase.cs
- TableLayoutSettingsTypeConverter.cs
- SafeRightsManagementPubHandle.cs
- StreamInfo.cs
- ActivityDelegate.cs
- CopyNamespacesAction.cs
- GridProviderWrapper.cs
- columnmapkeybuilder.cs
- AppSettings.cs
- EllipticalNodeOperations.cs
- NonSerializedAttribute.cs
- DbInsertCommandTree.cs
- LocalizedNameDescriptionPair.cs
- DnsPermission.cs
- Int32CollectionValueSerializer.cs
- DetailsViewDeleteEventArgs.cs
- AccessDataSourceDesigner.cs
- ProviderUtil.cs
- UpDownBase.cs
- LeftCellWrapper.cs
- WmlValidationSummaryAdapter.cs
- AbstractSvcMapFileLoader.cs
- TemplatedMailWebEventProvider.cs
- MsmqHostedTransportManager.cs
- InfoCardConstants.cs
- HtmlTableRow.cs
- LogFlushAsyncResult.cs
- CmsInterop.cs
- PKCS1MaskGenerationMethod.cs
- LowerCaseStringConverter.cs
- FieldAccessException.cs