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 / Map / ViewGeneration / Structures / ConstantSlot.cs / 1 / ConstantSlot.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Data.Mapping.ViewGeneration.CqlGeneration; using System.Collections.Generic; using System.Text; using System.Diagnostics; namespace System.Data.Mapping.ViewGeneration.Structures { // A constant that can be projected in a cell query internal class ConstantSlot : ProjectedSlot { #region Constructors // effects: Creates a slot with constant value being "value" internal ConstantSlot(CellConstant value) { Debug.Assert(value != null); m_constant = value; Debug.Assert(value.IsNotNull() == false, "Cannot store NotNull in a slot - NotNull is only for conditions"); } #endregion #region Fields private CellConstant m_constant; // The actual value #endregion #region Properties // effects: Returns the value stored in this constant internal CellConstant CellConstant { get {return m_constant;} } #endregion #region ProjectedSlot Members internal override ProjectedSlot MakeAliasedSlot(CqlBlock block, MemberPath memberPath, int slotNum) { return this; // Nothing to create } internal override ProjectedSlot RemapSlot(Dictionaryremap) { return this; // No remapping needed } internal override StringBuilder AsCql(StringBuilder builder, MemberPath outputMember, string blockAlias, int indentLevel) { return m_constant.AsCql(builder, outputMember, blockAlias); } protected override bool IsEqualTo(ProjectedSlot right) { ConstantSlot rightSlot = right as ConstantSlot; if (rightSlot == null) { return false; } return CellConstant.EqualityComparer.Equals(m_constant, rightSlot.m_constant); } protected override int GetHash() { return CellConstant.EqualityComparer.GetHashCode(m_constant); } #endregion internal override void ToCompactString(StringBuilder builder) { m_constant.ToCompactString(builder); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Data.Mapping.ViewGeneration.CqlGeneration; using System.Collections.Generic; using System.Text; using System.Diagnostics; namespace System.Data.Mapping.ViewGeneration.Structures { // A constant that can be projected in a cell query internal class ConstantSlot : ProjectedSlot { #region Constructors // effects: Creates a slot with constant value being "value" internal ConstantSlot(CellConstant value) { Debug.Assert(value != null); m_constant = value; Debug.Assert(value.IsNotNull() == false, "Cannot store NotNull in a slot - NotNull is only for conditions"); } #endregion #region Fields private CellConstant m_constant; // The actual value #endregion #region Properties // effects: Returns the value stored in this constant internal CellConstant CellConstant { get {return m_constant;} } #endregion #region ProjectedSlot Members internal override ProjectedSlot MakeAliasedSlot(CqlBlock block, MemberPath memberPath, int slotNum) { return this; // Nothing to create } internal override ProjectedSlot RemapSlot(Dictionaryremap) { return this; // No remapping needed } internal override StringBuilder AsCql(StringBuilder builder, MemberPath outputMember, string blockAlias, int indentLevel) { return m_constant.AsCql(builder, outputMember, blockAlias); } protected override bool IsEqualTo(ProjectedSlot right) { ConstantSlot rightSlot = right as ConstantSlot; if (rightSlot == null) { return false; } return CellConstant.EqualityComparer.Equals(m_constant, rightSlot.m_constant); } protected override int GetHash() { return CellConstant.EqualityComparer.GetHashCode(m_constant); } #endregion internal override void ToCompactString(StringBuilder builder) { m_constant.ToCompactString(builder); } } } // 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
- SamlSubject.cs
- UnmanagedBitmapWrapper.cs
- Optimizer.cs
- OrderedDictionary.cs
- MenuBase.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- figurelength.cs
- sqlpipe.cs
- XPathAncestorIterator.cs
- SimpleFileLog.cs
- BrushValueSerializer.cs
- SmtpNtlmAuthenticationModule.cs
- AppDomainAttributes.cs
- PropertyGroupDescription.cs
- Latin1Encoding.cs
- UIElementParagraph.cs
- TransactionManager.cs
- ComMethodElementCollection.cs
- DataGridDesigner.cs
- RelationshipConverter.cs
- _NegoState.cs
- BorderGapMaskConverter.cs
- AssemblyCollection.cs
- FixedTextPointer.cs
- _IPv4Address.cs
- UnsafeNativeMethods.cs
- SqlAliaser.cs
- MulticastNotSupportedException.cs
- FragmentNavigationEventArgs.cs
- SafeEventLogWriteHandle.cs
- xdrvalidator.cs
- ObjectAnimationBase.cs
- DefaultBinder.cs
- JapaneseCalendar.cs
- SafeFileHandle.cs
- Parser.cs
- OleDbErrorCollection.cs
- DataControlLinkButton.cs
- KeyFrames.cs
- ConfigurationLockCollection.cs
- StyleCollection.cs
- CharEntityEncoderFallback.cs
- WeakHashtable.cs
- WinEventTracker.cs
- AppModelKnownContentFactory.cs
- SettingsContext.cs
- MessageQueueAccessControlEntry.cs
- HtmlDocument.cs
- AudioDeviceOut.cs
- CodeGroup.cs
- SoapServerMethod.cs
- PopupRootAutomationPeer.cs
- DrawingDrawingContext.cs
- SafeSecurityHandles.cs
- GridViewRow.cs
- MembershipPasswordException.cs
- SpellerHighlightLayer.cs
- UserPreferenceChangedEventArgs.cs
- RightsManagementEncryptedStream.cs
- Byte.cs
- PreservationFileWriter.cs
- RotateTransform3D.cs
- ReferenceList.cs
- EditingContext.cs
- MLangCodePageEncoding.cs
- Italic.cs
- DocumentReferenceCollection.cs
- WebServiceMethodData.cs
- WebBrowserDocumentCompletedEventHandler.cs
- FtpRequestCacheValidator.cs
- BoundingRectTracker.cs
- DiscoveryClientChannelBase.cs
- ProjectionCamera.cs
- WebPartConnectionsConfigureVerb.cs
- TraceListener.cs
- WebControlAdapter.cs
- Set.cs
- BigInt.cs
- DescendantOverDescendantQuery.cs
- GridViewEditEventArgs.cs
- DuplicateWaitObjectException.cs
- AssemblyHelper.cs
- NonSerializedAttribute.cs
- ProfilePropertyNameValidator.cs
- TemplateXamlTreeBuilder.cs
- CodeDirectionExpression.cs
- TileBrush.cs
- HtmlTextArea.cs
- CommandManager.cs
- LifetimeServices.cs
- OptimizedTemplateContentHelper.cs
- BaseAsyncResult.cs
- PointCollection.cs
- WindowsPen.cs
- GridToolTip.cs
- CqlWriter.cs
- sqlinternaltransaction.cs
- WsdlInspector.cs
- SqlWebEventProvider.cs
- AdRotatorDesigner.cs