Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / QueryCache / shaperfactoryquerycachekey.cs / 1305376 / shaperfactoryquerycachekey.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //----------------------------------------------------------------------------- using System.Diagnostics; using System.Data.Objects; namespace System.Data.Common.QueryCache { internal class ShaperFactoryQueryCacheKey: QueryCacheKey { private readonly string _columnMapKey; private readonly MergeOption _mergeOption; private readonly bool _isValueLayer; internal ShaperFactoryQueryCacheKey(string columnMapKey, MergeOption mergeOption, bool isValueLayer) { Debug.Assert(null != columnMapKey, "null columnMapKey"); _columnMapKey = columnMapKey; _mergeOption = mergeOption; _isValueLayer = isValueLayer; } public override bool Equals(object obj) { var other = obj as ShaperFactoryQueryCacheKey ; if (null == other) { return false; } return this._columnMapKey.Equals(other._columnMapKey, _stringComparison) && this._mergeOption == other._mergeOption && this._isValueLayer == other._isValueLayer; } public override int GetHashCode() { return _columnMapKey.GetHashCode(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //----------------------------------------------------------------------------- using System.Diagnostics; using System.Data.Objects; namespace System.Data.Common.QueryCache { internal class ShaperFactoryQueryCacheKey: QueryCacheKey { private readonly string _columnMapKey; private readonly MergeOption _mergeOption; private readonly bool _isValueLayer; internal ShaperFactoryQueryCacheKey(string columnMapKey, MergeOption mergeOption, bool isValueLayer) { Debug.Assert(null != columnMapKey, "null columnMapKey"); _columnMapKey = columnMapKey; _mergeOption = mergeOption; _isValueLayer = isValueLayer; } public override bool Equals(object obj) { var other = obj as ShaperFactoryQueryCacheKey ; if (null == other) { return false; } return this._columnMapKey.Equals(other._columnMapKey, _stringComparison) && this._mergeOption == other._mergeOption && this._isValueLayer == other._isValueLayer; } public override int GetHashCode() { return _columnMapKey.GetHashCode(); } } } // 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
- HttpCachePolicy.cs
- RelatedImageListAttribute.cs
- WinEventWrap.cs
- LicenseContext.cs
- SweepDirectionValidation.cs
- MultiAsyncResult.cs
- BinaryMethodMessage.cs
- ForeignKeyConstraint.cs
- Soap.cs
- SqlMetaData.cs
- LinkClickEvent.cs
- GetMemberBinder.cs
- OleDbWrapper.cs
- SuppressMessageAttribute.cs
- ThreadLocal.cs
- Point3DAnimationBase.cs
- ToolStripItemClickedEventArgs.cs
- HistoryEventArgs.cs
- InputLanguage.cs
- TraceInternal.cs
- WindowsIPAddress.cs
- UIElement.cs
- MembershipUser.cs
- PenContexts.cs
- PackagePart.cs
- TimelineCollection.cs
- StrokeRenderer.cs
- ListContractAdapter.cs
- ApplicationSecurityManager.cs
- CodeMemberMethod.cs
- TimeoutException.cs
- SqlDataRecord.cs
- SerializationFieldInfo.cs
- Comparer.cs
- ToolStripSystemRenderer.cs
- BitmapEffect.cs
- SourceFileBuildProvider.cs
- ColorBlend.cs
- ListControl.cs
- TypeDelegator.cs
- MessageAction.cs
- DataGridViewBand.cs
- MobileUserControlDesigner.cs
- Set.cs
- DataGridViewLinkCell.cs
- ImmutableAssemblyCacheEntry.cs
- TemplateControlParser.cs
- diagnosticsswitches.cs
- OleDbStruct.cs
- Inline.cs
- StaticExtensionConverter.cs
- ServicesUtilities.cs
- XmlValidatingReader.cs
- TraceContextEventArgs.cs
- TableRow.cs
- DiscoveryOperationContext.cs
- ForEachAction.cs
- SpnegoTokenAuthenticator.cs
- Propagator.JoinPropagator.SubstitutingCloneVisitor.cs
- TransactionBehavior.cs
- Color.cs
- TagPrefixAttribute.cs
- DbModificationCommandTree.cs
- WebPart.cs
- WebPartConnectionsConnectVerb.cs
- Brush.cs
- ErrorFormatterPage.cs
- FileStream.cs
- RelationshipEndMember.cs
- AssertSection.cs
- ReceiveSecurityHeaderElementManager.cs
- EncryptedPackageFilter.cs
- SerializableAttribute.cs
- PropertyRecord.cs
- CheckedListBox.cs
- BitmapVisualManager.cs
- FolderNameEditor.cs
- AstTree.cs
- CompilationRelaxations.cs
- RequestQueryProcessor.cs
- ObjectDataSourceMethodEventArgs.cs
- ModelToObjectValueConverter.cs
- FormClosingEvent.cs
- XPathBinder.cs
- recordstatescratchpad.cs
- TextTreeText.cs
- BindingNavigator.cs
- Encoding.cs
- ModuleBuilderData.cs
- EntityDataSourceMemberPath.cs
- CapabilitiesRule.cs
- HttpFormatExtensions.cs
- MLangCodePageEncoding.cs
- ETagAttribute.cs
- Socket.cs
- ErrorFormatterPage.cs
- _IPv4Address.cs
- BaseParaClient.cs
- ImageIndexEditor.cs
- PermissionAttributes.cs