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 / CreateRefExpr.cs / 1 / CreateRefExpr.cs
//---------------------------------------------------------------------- //// Copyproperty (c) Microsoft Corporation. All propertys reserved. // // // @owner [....] // @backup [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// Represents CREATEREF expression /// createref( entitySet, keys ) /// internal sealed class CreateRefExpr : Expr { private Expr _entitySet; private Expr _keys; private Expr _typeIdentifier; ////// Initializes CreateRefExpr /// /// expression representing the entity set /// internal CreateRefExpr( Expr entitySet, Expr keys ) { _entitySet = entitySet; _keys = keys; } ////// Initializes CreateRefExpr /// /// /// /// internal CreateRefExpr(Expr entitySet, Expr keys, Expr typeIdentifier ) { _entitySet = entitySet; _keys = keys; _typeIdentifier = typeIdentifier; } ////// return the expression for the entity set /// internal Expr EntitySet { get { return _entitySet; } } ////// returns the expression for the keys /// internal Expr Keys { get { return _keys; } } ////// gets typeidentifier if exists /// internal Expr TypeIdentifier { get { return _typeIdentifier; } } } ////// Represents KEY expression /// key( expr ) /// internal class KeyExpr : Expr { private Expr _refExpr; ////// initializes KEY expression /// /// internal KeyExpr( Expr refExpr ) { _refExpr = refExpr; } ////// returns ref inner expression /// internal Expr RefExpr { get { return _refExpr; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------- //// Copyproperty (c) Microsoft Corporation. All propertys reserved. // // // @owner [....] // @backup [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// Represents CREATEREF expression /// createref( entitySet, keys ) /// internal sealed class CreateRefExpr : Expr { private Expr _entitySet; private Expr _keys; private Expr _typeIdentifier; ////// Initializes CreateRefExpr /// /// expression representing the entity set /// internal CreateRefExpr( Expr entitySet, Expr keys ) { _entitySet = entitySet; _keys = keys; } ////// Initializes CreateRefExpr /// /// /// /// internal CreateRefExpr(Expr entitySet, Expr keys, Expr typeIdentifier ) { _entitySet = entitySet; _keys = keys; _typeIdentifier = typeIdentifier; } ////// return the expression for the entity set /// internal Expr EntitySet { get { return _entitySet; } } ////// returns the expression for the keys /// internal Expr Keys { get { return _keys; } } ////// gets typeidentifier if exists /// internal Expr TypeIdentifier { get { return _typeIdentifier; } } } ////// Represents KEY expression /// key( expr ) /// internal class KeyExpr : Expr { private Expr _refExpr; ////// initializes KEY expression /// /// internal KeyExpr( Expr refExpr ) { _refExpr = refExpr; } ////// returns ref inner expression /// internal Expr RefExpr { get { return _refExpr; } } } } // 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
- SQLUtility.cs
- CodeDomLocalizationProvider.cs
- EdmRelationshipRoleAttribute.cs
- CommandPlan.cs
- WebBrowserNavigatingEventHandler.cs
- DataIdProcessor.cs
- FormsAuthenticationTicket.cs
- externdll.cs
- XmlDataSourceView.cs
- WorkflowWebHostingModule.cs
- DefaultTraceListener.cs
- BamlReader.cs
- PrincipalPermission.cs
- SkipStoryboardToFill.cs
- Page.cs
- SelectionWordBreaker.cs
- ReachNamespaceInfo.cs
- LineServicesRun.cs
- StringBuilder.cs
- StatusBarDrawItemEvent.cs
- ParameterCollectionEditor.cs
- JournalEntry.cs
- DispatchWrapper.cs
- URLAttribute.cs
- ContractInstanceProvider.cs
- controlskin.cs
- ObjectDataSource.cs
- Transactions.cs
- SessionEndingCancelEventArgs.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- GatewayDefinition.cs
- LogRestartAreaEnumerator.cs
- TraceUtility.cs
- FormViewPagerRow.cs
- BaseParagraph.cs
- TextBoxAutoCompleteSourceConverter.cs
- PassportAuthenticationEventArgs.cs
- BaseCodeDomTreeGenerator.cs
- ProjectionCamera.cs
- PersonalizationStateInfo.cs
- MappingSource.cs
- OpenFileDialog.cs
- RegisteredScript.cs
- Environment.cs
- LineInfo.cs
- Cursor.cs
- ExpressionReplacer.cs
- Propagator.JoinPropagator.cs
- GroupDescription.cs
- ClientFormsAuthenticationCredentials.cs
- CryptoApi.cs
- FilteredReadOnlyMetadataCollection.cs
- TextCharacters.cs
- TileModeValidation.cs
- XmlIterators.cs
- DesignerOptionService.cs
- COM2ColorConverter.cs
- BaseContextMenu.cs
- ValidatedControlConverter.cs
- CodePrimitiveExpression.cs
- XmlUTF8TextWriter.cs
- SQlBooleanStorage.cs
- ScrollBar.cs
- ModelToObjectValueConverter.cs
- DependencyPropertyHelper.cs
- StylusCaptureWithinProperty.cs
- ControlIdConverter.cs
- SoapEnumAttribute.cs
- ellipse.cs
- SvcMapFileLoader.cs
- BamlLocalizabilityResolver.cs
- RectAnimationBase.cs
- TrackingWorkflowEventArgs.cs
- _SSPIWrapper.cs
- CannotUnloadAppDomainException.cs
- WebPartConnectionsDisconnectVerb.cs
- BrowserCapabilitiesCodeGenerator.cs
- XmlUtil.cs
- SoapRpcServiceAttribute.cs
- bidPrivateBase.cs
- SimpleType.cs
- OutOfProcStateClientManager.cs
- EdmToObjectNamespaceMap.cs
- DashStyle.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- BooleanAnimationBase.cs
- Hashtable.cs
- Scene3D.cs
- CodeAssignStatement.cs
- MimeWriter.cs
- DataTableCollection.cs
- SessionMode.cs
- FilteredSchemaElementLookUpTable.cs
- DispatcherFrame.cs
- _RequestLifetimeSetter.cs
- PropertyDescriptorCollection.cs
- HitTestWithPointDrawingContextWalker.cs
- InputEventArgs.cs
- BulletChrome.cs
- DataTemplate.cs