Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataEntity / System / Data / Mapping / EntityViewContainer.cs / 3 / EntityViewContainer.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Data.Common.Utils; using System.Text; namespace System.Data.Mapping { ////// Base class for the type created at design time to store the generated views. /// public abstract class EntityViewContainer { #region Constructors protected EntityViewContainer() { } #endregion #region fields private string m_storedHashOverMappingClosure; // Hash value over the whole Metadata and Mapping closure private string m_storedhashOverAllExtentViews; // Hash value over all the extent views private string m_storededmEntityContainerName; // C side entity container name private string m_storedStoreEntityContainerName; // S side entity container name private int _viewCount; #endregion #region properties ////// Returns the cached dictionary of (ExtentName,EsqlView) /// internal IEnumerable> ExtentViews { get { for (int i = 0; i < ViewCount; i++) { yield return GetViewAt(i); } } } protected abstract System.Collections.Generic.KeyValuePair GetViewAt(int index); [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Edm")] public string EdmEntityContainerName { get { return this.m_storededmEntityContainerName; } set { this.m_storededmEntityContainerName = value; } } public string StoreEntityContainerName { get { return this.m_storedStoreEntityContainerName; } set { this.m_storedStoreEntityContainerName = value; } } public string HashOverMappingClosure { get { return this.m_storedHashOverMappingClosure; } set { this.m_storedHashOverMappingClosure = value; } } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", MessageId = "OverAll")] public string HashOverAllExtentViews { get { return this.m_storedhashOverAllExtentViews; } set { this.m_storedhashOverAllExtentViews = value; } } public int ViewCount { get { return _viewCount; } protected set { _viewCount = value; } } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Data.Common.Utils; using System.Text; namespace System.Data.Mapping { ////// Base class for the type created at design time to store the generated views. /// public abstract class EntityViewContainer { #region Constructors protected EntityViewContainer() { } #endregion #region fields private string m_storedHashOverMappingClosure; // Hash value over the whole Metadata and Mapping closure private string m_storedhashOverAllExtentViews; // Hash value over all the extent views private string m_storededmEntityContainerName; // C side entity container name private string m_storedStoreEntityContainerName; // S side entity container name private int _viewCount; #endregion #region properties ////// Returns the cached dictionary of (ExtentName,EsqlView) /// internal IEnumerable> ExtentViews { get { for (int i = 0; i < ViewCount; i++) { yield return GetViewAt(i); } } } protected abstract System.Collections.Generic.KeyValuePair GetViewAt(int index); [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Edm")] public string EdmEntityContainerName { get { return this.m_storededmEntityContainerName; } set { this.m_storededmEntityContainerName = value; } } public string StoreEntityContainerName { get { return this.m_storedStoreEntityContainerName; } set { this.m_storedStoreEntityContainerName = value; } } public string HashOverMappingClosure { get { return this.m_storedHashOverMappingClosure; } set { this.m_storedHashOverMappingClosure = value; } } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", MessageId = "OverAll")] public string HashOverAllExtentViews { get { return this.m_storedhashOverAllExtentViews; } set { this.m_storedhashOverAllExtentViews = value; } } public int ViewCount { get { return _viewCount; } protected set { _viewCount = value; } } #endregion } } // 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
- SingleStorage.cs
- ChainedAsyncResult.cs
- FileDialogPermission.cs
- MessageSecurityOverTcp.cs
- SqlMethods.cs
- ILGenerator.cs
- XhtmlConformanceSection.cs
- GreenMethods.cs
- ExclusiveCanonicalizationTransform.cs
- CharEnumerator.cs
- OracleBoolean.cs
- TextProperties.cs
- MTConfigUtil.cs
- DeferrableContent.cs
- WorkflowIdleBehavior.cs
- ReverseQueryOperator.cs
- AspNetSynchronizationContext.cs
- DataBindingHandlerAttribute.cs
- AvTraceFormat.cs
- RelativeSource.cs
- StickyNoteAnnotations.cs
- ColumnCollection.cs
- ListViewGroupItemCollection.cs
- CustomAttributeSerializer.cs
- DefaultEventAttribute.cs
- KeyedCollection.cs
- FixedTextBuilder.cs
- LZCodec.cs
- ValidationErrorInfo.cs
- TextTreeFixupNode.cs
- DBCSCodePageEncoding.cs
- LogSwitch.cs
- InitializationEventAttribute.cs
- _NTAuthentication.cs
- ListDictionary.cs
- ItemsChangedEventArgs.cs
- WindowsBrush.cs
- CommandCollectionEditor.cs
- ConfigurationLockCollection.cs
- EntityCommandExecutionException.cs
- EntityContainerEntitySet.cs
- ButtonChrome.cs
- RemoteWebConfigurationHost.cs
- ControlValuePropertyAttribute.cs
- XmlQueryCardinality.cs
- PartialList.cs
- CodeGotoStatement.cs
- TextFormatter.cs
- ListViewItemSelectionChangedEvent.cs
- ToolStripLabel.cs
- FastPropertyAccessor.cs
- AddInIpcChannel.cs
- OciHandle.cs
- oledbmetadatacolumnnames.cs
- GridViewRowEventArgs.cs
- DataSourceXmlSerializationAttribute.cs
- LoadRetryHandler.cs
- LinearGradientBrush.cs
- DefaultSerializationProviderAttribute.cs
- ZipIORawDataFileBlock.cs
- DataControlHelper.cs
- QilScopedVisitor.cs
- DataGridItemAttachedStorage.cs
- BufferBuilder.cs
- ADConnectionHelper.cs
- EventRoute.cs
- DataGridViewCheckBoxCell.cs
- GradientBrush.cs
- DbgUtil.cs
- DataGridViewTextBoxEditingControl.cs
- DTCTransactionManager.cs
- DecoderExceptionFallback.cs
- TypeSemantics.cs
- JavaScriptObjectDeserializer.cs
- BindingEntityInfo.cs
- OpenTypeCommon.cs
- DefaultBindingPropertyAttribute.cs
- Classification.cs
- XmlSchemaSequence.cs
- ConstructorBuilder.cs
- CommandDevice.cs
- DnsCache.cs
- TextEditorParagraphs.cs
- ControlDesignerState.cs
- ISFTagAndGuidCache.cs
- DataConnectionHelper.cs
- EntityCollectionChangedParams.cs
- HotSpot.cs
- DataGridViewCellValidatingEventArgs.cs
- VectorCollection.cs
- OrderByLifter.cs
- DocumentViewerAutomationPeer.cs
- TcpProcessProtocolHandler.cs
- EditingCommands.cs
- CacheMemory.cs
- ObjectListItem.cs
- BinaryVersion.cs
- ServiceInfo.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- ButtonFieldBase.cs