Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataEntity / System / Data / Map / Update / Internal / SourceInterpreter.cs / 3 / SourceInterpreter.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.Data.Objects; using System.Data.Metadata.Edm; namespace System.Data.Mapping.Update.Internal { ////// This class determines the state entries contributing to an expression /// propagated through an update mapping view (values in propagated expressions /// remember where they come from) /// internal class SourceInterpreter { private SourceInterpreter(UpdateTranslator translator, EntitySet sourceTable) { m_stateEntries = new List(); m_translator = translator; m_sourceTable = sourceTable; } private readonly List m_stateEntries; private readonly UpdateTranslator m_translator; private readonly EntitySet m_sourceTable; /// /// Finds all markup associated with the given source. /// /// Source expression. Must not be null. /// Translator containing session information. /// Table from which the exception was thrown (must not be null). ///Markup. internal static ReadOnlyCollectionGetAllStateEntries(PropagatorResult source, UpdateTranslator translator, EntitySet sourceTable) { Debug.Assert(null != source); Debug.Assert(null != sourceTable); SourceInterpreter interpreter = new SourceInterpreter(translator, sourceTable); interpreter.RetrieveResultMarkup(source); return new ReadOnlyCollection (interpreter.m_stateEntries); } private void RetrieveResultMarkup(PropagatorResult source) { Debug.Assert(null != source); if (null != source.StateEntry) { m_stateEntries.Add(source.StateEntry); } long identifier = source.Identifier; if (PropagatorResult.NullIdentifier != identifier) { // if this is an identifier, it may also be registered with an "owner". // Return the owner as well if the owner is also mapped to this table. PropagatorResult owner; if (m_translator.KeyManager.TryGetIdentifierOwner(identifier, out owner) && null != owner.StateEntry && ExtentInScope(owner.StateEntry.EntitySet)) { m_stateEntries.Add(owner.StateEntry); } // Check if are any referential constraints. If so, the entity key // implies that the dependent relationship instance is also being // handled in this result. foreach (IEntityStateEntry stateEntry in m_translator.KeyManager.GetDependentStateEntries(identifier)) { m_stateEntries.Add(stateEntry); } } if (!source.IsSimple && !source.IsNull) { // walk children foreach (PropagatorResult child in source.GetMemberValues()) { RetrieveResultMarkup(child); } } } // Determines whether the given table is in scope for the current source: if the source // table does not map to the source table for this interpreter, it is not in scope // for exceptions thrown from this table. private bool ExtentInScope(EntitySetBase extent) { if (null == extent) { return false; } // determine if the extent is mapped to this table return m_translator.ViewLoader.GetAffectedTables(extent).Contains(m_sourceTable); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.Data.Objects; using System.Data.Metadata.Edm; namespace System.Data.Mapping.Update.Internal { ////// This class determines the state entries contributing to an expression /// propagated through an update mapping view (values in propagated expressions /// remember where they come from) /// internal class SourceInterpreter { private SourceInterpreter(UpdateTranslator translator, EntitySet sourceTable) { m_stateEntries = new List(); m_translator = translator; m_sourceTable = sourceTable; } private readonly List m_stateEntries; private readonly UpdateTranslator m_translator; private readonly EntitySet m_sourceTable; /// /// Finds all markup associated with the given source. /// /// Source expression. Must not be null. /// Translator containing session information. /// Table from which the exception was thrown (must not be null). ///Markup. internal static ReadOnlyCollectionGetAllStateEntries(PropagatorResult source, UpdateTranslator translator, EntitySet sourceTable) { Debug.Assert(null != source); Debug.Assert(null != sourceTable); SourceInterpreter interpreter = new SourceInterpreter(translator, sourceTable); interpreter.RetrieveResultMarkup(source); return new ReadOnlyCollection (interpreter.m_stateEntries); } private void RetrieveResultMarkup(PropagatorResult source) { Debug.Assert(null != source); if (null != source.StateEntry) { m_stateEntries.Add(source.StateEntry); } long identifier = source.Identifier; if (PropagatorResult.NullIdentifier != identifier) { // if this is an identifier, it may also be registered with an "owner". // Return the owner as well if the owner is also mapped to this table. PropagatorResult owner; if (m_translator.KeyManager.TryGetIdentifierOwner(identifier, out owner) && null != owner.StateEntry && ExtentInScope(owner.StateEntry.EntitySet)) { m_stateEntries.Add(owner.StateEntry); } // Check if are any referential constraints. If so, the entity key // implies that the dependent relationship instance is also being // handled in this result. foreach (IEntityStateEntry stateEntry in m_translator.KeyManager.GetDependentStateEntries(identifier)) { m_stateEntries.Add(stateEntry); } } if (!source.IsSimple && !source.IsNull) { // walk children foreach (PropagatorResult child in source.GetMemberValues()) { RetrieveResultMarkup(child); } } } // Determines whether the given table is in scope for the current source: if the source // table does not map to the source table for this interpreter, it is not in scope // for exceptions thrown from this table. private bool ExtentInScope(EntitySetBase extent) { if (null == extent) { return false; } // determine if the extent is mapped to this table return m_translator.ViewLoader.GetAffectedTables(extent).Contains(m_sourceTable); } } } // 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
- MailBnfHelper.cs
- XmlSchemaComplexContentRestriction.cs
- AnnotationObservableCollection.cs
- XmlILAnnotation.cs
- MsmqBindingBase.cs
- ProfileManager.cs
- CryptoStream.cs
- RichTextBox.cs
- HttpFormatExtensions.cs
- DbConnectionStringCommon.cs
- SecurityKeyIdentifier.cs
- FixUp.cs
- ResourceWriter.cs
- WebContext.cs
- RtfFormatStack.cs
- AlphaSortedEnumConverter.cs
- ResourceReferenceExpression.cs
- StackSpiller.Bindings.cs
- BindingCollectionElement.cs
- CursorEditor.cs
- IndependentAnimationStorage.cs
- CodeAttributeDeclaration.cs
- PrivilegedConfigurationManager.cs
- MapPathBasedVirtualPathProvider.cs
- HtmlControl.cs
- DESCryptoServiceProvider.cs
- DecimalSumAggregationOperator.cs
- EntityRecordInfo.cs
- ConfigurationManagerHelper.cs
- RichTextBoxConstants.cs
- IFlowDocumentViewer.cs
- XmlSchemaObject.cs
- XmlBufferedByteStreamReader.cs
- Exception.cs
- XmlSchemaSimpleTypeUnion.cs
- GuidConverter.cs
- GetPageCompletedEventArgs.cs
- LayoutDump.cs
- TimeSpanStorage.cs
- SapiRecoContext.cs
- CheckBoxAutomationPeer.cs
- CommentEmitter.cs
- CounterCreationData.cs
- AssemblyResourceLoader.cs
- StretchValidation.cs
- PageThemeBuildProvider.cs
- RotateTransform3D.cs
- SchemaConstraints.cs
- CompilerCollection.cs
- MenuItemStyle.cs
- TextElementEnumerator.cs
- CommandBinding.cs
- IBuiltInEvidence.cs
- XmlQueryStaticData.cs
- Task.cs
- GregorianCalendar.cs
- ErrorWebPart.cs
- CallbackCorrelationInitializer.cs
- Binding.cs
- PolyQuadraticBezierSegment.cs
- String.cs
- future.cs
- CodeArrayIndexerExpression.cs
- SchemaImporter.cs
- WindowsSolidBrush.cs
- DefaultHttpHandler.cs
- HttpPostLocalhostServerProtocol.cs
- GenericXmlSecurityToken.cs
- DynamicILGenerator.cs
- CompatibleIComparer.cs
- TemplateParser.cs
- TemplateControlBuildProvider.cs
- ValidatingReaderNodeData.cs
- ConvertersCollection.cs
- RegularExpressionValidator.cs
- _AutoWebProxyScriptHelper.cs
- QilXmlWriter.cs
- LassoSelectionBehavior.cs
- Int32RectConverter.cs
- ScrollBar.cs
- TabPanel.cs
- ProfileSection.cs
- UIElementCollection.cs
- JournalEntryListConverter.cs
- TextTreeUndoUnit.cs
- DataControlHelper.cs
- DynamicValueConverter.cs
- PixelFormatConverter.cs
- XmlReflectionMember.cs
- ActivitySurrogate.cs
- FontStyleConverter.cs
- NamespaceDecl.cs
- CommonDialog.cs
- Connector.cs
- UiaCoreProviderApi.cs
- XmlElementAttribute.cs
- IDispatchConstantAttribute.cs
- CatalogPart.cs
- Panel.cs
- PixelShader.cs