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 / 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
- RectangleGeometry.cs
- DictionaryBase.cs
- TextProviderWrapper.cs
- TimelineGroup.cs
- TransformerConfigurationWizardBase.cs
- DependencyProperty.cs
- TreeIterators.cs
- FileStream.cs
- sitestring.cs
- CultureMapper.cs
- ValuePattern.cs
- DataServiceQueryOfT.cs
- HandlerElementCollection.cs
- UnSafeCharBuffer.cs
- PersonalizableTypeEntry.cs
- BoundsDrawingContextWalker.cs
- FormViewInsertedEventArgs.cs
- MsmqOutputSessionChannel.cs
- BitmapEffectGroup.cs
- GridViewRow.cs
- ReflectTypeDescriptionProvider.cs
- WorkflowRuntime.cs
- BitmapSourceSafeMILHandle.cs
- CoTaskMemHandle.cs
- ParameterModifier.cs
- NoResizeSelectionBorderGlyph.cs
- HttpBufferlessInputStream.cs
- ObjectResult.cs
- WmpBitmapDecoder.cs
- XmlSchemaComplexContentRestriction.cs
- DetailsViewInsertEventArgs.cs
- SqlReferenceCollection.cs
- ImpersonationContext.cs
- Model3D.cs
- EntityProviderServices.cs
- BrowsableAttribute.cs
- ErrorFormatterPage.cs
- ContentAlignmentEditor.cs
- URI.cs
- DataRelationPropertyDescriptor.cs
- BuildDependencySet.cs
- ZeroOpNode.cs
- PartialTrustHelpers.cs
- XmlSerializerFactory.cs
- MessageFormatterConverter.cs
- ListViewDesigner.cs
- ContentPosition.cs
- SourceLineInfo.cs
- PointLightBase.cs
- XmlWriterTraceListener.cs
- GridViewSelectEventArgs.cs
- ToolBarButtonClickEvent.cs
- SafePEFileHandle.cs
- BindingExpressionBase.cs
- CodeSubDirectory.cs
- RootBrowserWindowProxy.cs
- ExternalException.cs
- ColumnClickEvent.cs
- Vector3D.cs
- RegularExpressionValidator.cs
- DefaultTextStoreTextComposition.cs
- WebPartDescriptionCollection.cs
- ImmutableObjectAttribute.cs
- WebPageTraceListener.cs
- IisTraceWebEventProvider.cs
- WebExceptionStatus.cs
- SoapFormatter.cs
- TableCell.cs
- AddInControllerImpl.cs
- InvalidPrinterException.cs
- ChannelTraceRecord.cs
- WebPartManager.cs
- RegexRunnerFactory.cs
- ToolboxBitmapAttribute.cs
- RelatedImageListAttribute.cs
- HttpResponse.cs
- RequestSecurityToken.cs
- TransactionOptions.cs
- FileAccessException.cs
- PenContext.cs
- ReaderWriterLock.cs
- BasicHttpSecurityMode.cs
- RuleSettingsCollection.cs
- FunctionDescription.cs
- XmlCustomFormatter.cs
- MaterialGroup.cs
- ServiceManager.cs
- WebPartCollection.cs
- TemplateXamlParser.cs
- SHA512.cs
- nulltextcontainer.cs
- ButtonChrome.cs
- TimeoutConverter.cs
- CngProperty.cs
- EventDescriptor.cs
- DataControlFieldHeaderCell.cs
- TypeBuilderInstantiation.cs
- DataBindingHandlerAttribute.cs
- UInt32Storage.cs
- TextViewBase.cs