Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- MouseDevice.cs
- OrderByQueryOptionExpression.cs
- ContractMethodParameterInfo.cs
- WebBrowsableAttribute.cs
- RepeaterItemCollection.cs
- XAMLParseException.cs
- SBCSCodePageEncoding.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- ImageListUtils.cs
- RuntimeHandles.cs
- CheckBoxStandardAdapter.cs
- GrammarBuilder.cs
- BitSet.cs
- EasingKeyFrames.cs
- TimeoutStream.cs
- DynamicArgumentDialog.cs
- ChildDocumentBlock.cs
- SelectionGlyph.cs
- TypeUtil.cs
- SHA384Cng.cs
- SuppressMergeCheckAttribute.cs
- DynamicControl.cs
- Soap12ProtocolImporter.cs
- SecurityUniqueId.cs
- FixedSOMImage.cs
- ObjectDataSourceStatusEventArgs.cs
- StaticExtension.cs
- ColorAnimationUsingKeyFrames.cs
- ValidationEventArgs.cs
- CellLabel.cs
- CheckBoxAutomationPeer.cs
- BinHexEncoder.cs
- ObjectFullSpanRewriter.cs
- OrderToken.cs
- ClrPerspective.cs
- ActivityExecutionContextCollection.cs
- WebBrowserUriTypeConverter.cs
- CompositeTypefaceMetrics.cs
- IndentedTextWriter.cs
- UnitySerializationHolder.cs
- LicenseException.cs
- StylusButtonEventArgs.cs
- FullTrustAssembly.cs
- ThicknessConverter.cs
- X509CertificateClaimSet.cs
- SiteMembershipCondition.cs
- DSACryptoServiceProvider.cs
- DecoderReplacementFallback.cs
- TimelineClockCollection.cs
- ZoneLinkButton.cs
- StringInfo.cs
- XmlSchemaComplexType.cs
- FastPropertyAccessor.cs
- ContentOperations.cs
- CustomErrorsSectionWrapper.cs
- DataStorage.cs
- ScopeCompiler.cs
- WindowsListViewGroup.cs
- TrustSection.cs
- CellLabel.cs
- XmlObjectSerializerReadContextComplexJson.cs
- TriggerCollection.cs
- CharacterString.cs
- DesignSurfaceEvent.cs
- BitmapDownload.cs
- ServiceDescriptionSerializer.cs
- DiscoveryDocumentSearchPattern.cs
- StackOverflowException.cs
- MulticastDelegate.cs
- WebPartDesigner.cs
- DataSourceDescriptorCollection.cs
- MsmqIntegrationBindingElement.cs
- SQLChars.cs
- XmlSchemaDocumentation.cs
- CapabilitiesPattern.cs
- TextBox.cs
- BlurEffect.cs
- DragDeltaEventArgs.cs
- DataFieldConverter.cs
- Inflater.cs
- RadioButtonPopupAdapter.cs
- QueryResult.cs
- WebConvert.cs
- HashHelper.cs
- TagNameToTypeMapper.cs
- ObjectDataSourceChooseMethodsPanel.cs
- Boolean.cs
- ContainerUtilities.cs
- SqlCacheDependency.cs
- SeekStoryboard.cs
- UnrecognizedAssertionsBindingElement.cs
- CharEnumerator.cs
- PeerCustomResolverElement.cs
- BinaryCommonClasses.cs
- ThreadStartException.cs
- CodeIterationStatement.cs
- LocalBuilder.cs
- ContainerParaClient.cs
- CookieParameter.cs
- EntityDataSourceWrapper.cs