Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Metadata / Perspective.cs / 1305376 / Perspective.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Diagnostics; namespace System.Data.Metadata.Edm { using System.Collections.Generic; ////// Internal helper class for query /// internal abstract class Perspective { #region Constructors ////// Creates a new instance of perspective class so that query can work /// ignorant of all spaces /// /// runtime metadata container /// target dataspace for the perspective internal Perspective(MetadataWorkspace metadataWorkspace, DataSpace targetDataspace) { EntityUtil.CheckArgumentNull(metadataWorkspace, "metadataWorkspace"); m_metadataWorkspace = metadataWorkspace; m_targetDataspace = targetDataspace; } #endregion #region Fields private MetadataWorkspace m_metadataWorkspace; private DataSpace m_targetDataspace; #endregion #region Methods ////// Given the type in the target space and the member name in the source space, /// get the corresponding member in the target space /// For e.g. consider a Conceptual Type 'Foo' with a member 'Bar' and a CLR type /// 'XFoo' with a member 'YBar'. If one has a reference to Foo one can /// invoke GetMember(Foo,"YBar") to retrieve the member metadata for bar /// /// The type in the target perspective /// the name of the member in the source perspective /// Whether to do case-sensitive member look up or not /// returns the member in target space, if a match is found ///internal virtual bool TryGetMember(StructuralType type, String memberName, bool ignoreCase, out EdmMember outMember) { EntityUtil.CheckArgumentNull(type, "type"); EntityUtil.CheckStringArgument(memberName, "memberName"); outMember = null; // If a normal member is not present, check for navigation property with that name return type.Members.TryGetValue(memberName, ignoreCase, out outMember); } /// /// Returns the extent in the target space, for the given entity container /// /// name of the entity container in target space /// name of the extent /// Whether to do case-sensitive member look up or not /// extent in target space, if a match is found ///returns true, if a match is found otherwise returns false internal bool TryGetExtent(EntityContainer entityContainer, String extentName, bool ignoreCase, out EntitySetBase outSet) { // There are no entity container and extents in the OSpace. So there is no mapping // involved. Hence the name should be a valid name in the CSpace. return entityContainer.BaseEntitySets.TryGetValue(extentName, ignoreCase, out outSet); } ////// Get the default entity container /// returns null for any perspective other /// than the CLR perspective /// ///The default container internal virtual EntityContainer GetDefaultContainer() { return null; } ////// Get an entity container based upon the strong name of the container /// If no entity container is found, returns null, else returns the first one/// /// name of the entity container /// true for case-insensitive lookup /// returns the entity container if a match is found ///returns true if a match is found, otherwise false internal virtual bool TryGetEntityContainer(string name, bool ignoreCase, out EntityContainer entityContainer) { return MetadataWorkspace.TryGetEntityContainer(name, ignoreCase, TargetDataspace, out entityContainer); } ////// Gets a type with the given name in the target space. /// /// full name of the type /// true for case-insensitive lookup /// TypeUsage for the type ///returns true if a match was found, otherwise false internal abstract bool TryGetTypeByName(string fullName, bool ignoreCase, out TypeUsage typeUsage); ////// Returns overloads of a function with the given name in the target space. /// /// full name of the function /// true for case-insensitive lookup /// function overloads ///returns true if a match was found, otherwise false internal bool TryGetFunctionByName(string fullName, bool ignoreCase, out IListfunctionOverloads) { EntityUtil.CheckStringArgument(fullName, "fullName"); // First look in CSpace EdmItemCollection edmItemCollection = (EdmItemCollection)m_metadataWorkspace.GetItemCollection(DataSpace.CSpace); var overloads = edmItemCollection.GetFunctions(fullName, ignoreCase); // If CSpace lookup failed, look in SSpace if (overloads == null || overloads.Count == 0) { ItemCollection storeItemCollection; if (m_metadataWorkspace.TryGetItemCollection(DataSpace.SSpace, out storeItemCollection)) { overloads = ((StoreItemCollection)storeItemCollection).GetCTypeFunctions(fullName, ignoreCase); } } functionOverloads = (overloads != null && overloads.Count > 0) ? overloads : null; return functionOverloads != null; } /// /// Return the metadata workspace /// internal MetadataWorkspace MetadataWorkspace { get { return m_metadataWorkspace; } } ////// returns the primitive type for a given primitive type kind. /// /// /// ///internal virtual bool TryGetMappedPrimitiveType(PrimitiveTypeKind primitiveTypeKind, out PrimitiveType primitiveType) { primitiveType = m_metadataWorkspace.GetMappedPrimitiveType(primitiveTypeKind, DataSpace.CSpace); return (null != primitiveType); } // // This property will be needed to construct keys for transient types // /// /// Returns the target dataspace for this perspective /// internal DataSpace TargetDataspace { get { return m_targetDataspace; } } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Diagnostics; namespace System.Data.Metadata.Edm { using System.Collections.Generic; ////// Internal helper class for query /// internal abstract class Perspective { #region Constructors ////// Creates a new instance of perspective class so that query can work /// ignorant of all spaces /// /// runtime metadata container /// target dataspace for the perspective internal Perspective(MetadataWorkspace metadataWorkspace, DataSpace targetDataspace) { EntityUtil.CheckArgumentNull(metadataWorkspace, "metadataWorkspace"); m_metadataWorkspace = metadataWorkspace; m_targetDataspace = targetDataspace; } #endregion #region Fields private MetadataWorkspace m_metadataWorkspace; private DataSpace m_targetDataspace; #endregion #region Methods ////// Given the type in the target space and the member name in the source space, /// get the corresponding member in the target space /// For e.g. consider a Conceptual Type 'Foo' with a member 'Bar' and a CLR type /// 'XFoo' with a member 'YBar'. If one has a reference to Foo one can /// invoke GetMember(Foo,"YBar") to retrieve the member metadata for bar /// /// The type in the target perspective /// the name of the member in the source perspective /// Whether to do case-sensitive member look up or not /// returns the member in target space, if a match is found ///internal virtual bool TryGetMember(StructuralType type, String memberName, bool ignoreCase, out EdmMember outMember) { EntityUtil.CheckArgumentNull(type, "type"); EntityUtil.CheckStringArgument(memberName, "memberName"); outMember = null; // If a normal member is not present, check for navigation property with that name return type.Members.TryGetValue(memberName, ignoreCase, out outMember); } /// /// Returns the extent in the target space, for the given entity container /// /// name of the entity container in target space /// name of the extent /// Whether to do case-sensitive member look up or not /// extent in target space, if a match is found ///returns true, if a match is found otherwise returns false internal bool TryGetExtent(EntityContainer entityContainer, String extentName, bool ignoreCase, out EntitySetBase outSet) { // There are no entity container and extents in the OSpace. So there is no mapping // involved. Hence the name should be a valid name in the CSpace. return entityContainer.BaseEntitySets.TryGetValue(extentName, ignoreCase, out outSet); } ////// Get the default entity container /// returns null for any perspective other /// than the CLR perspective /// ///The default container internal virtual EntityContainer GetDefaultContainer() { return null; } ////// Get an entity container based upon the strong name of the container /// If no entity container is found, returns null, else returns the first one/// /// name of the entity container /// true for case-insensitive lookup /// returns the entity container if a match is found ///returns true if a match is found, otherwise false internal virtual bool TryGetEntityContainer(string name, bool ignoreCase, out EntityContainer entityContainer) { return MetadataWorkspace.TryGetEntityContainer(name, ignoreCase, TargetDataspace, out entityContainer); } ////// Gets a type with the given name in the target space. /// /// full name of the type /// true for case-insensitive lookup /// TypeUsage for the type ///returns true if a match was found, otherwise false internal abstract bool TryGetTypeByName(string fullName, bool ignoreCase, out TypeUsage typeUsage); ////// Returns overloads of a function with the given name in the target space. /// /// full name of the function /// true for case-insensitive lookup /// function overloads ///returns true if a match was found, otherwise false internal bool TryGetFunctionByName(string fullName, bool ignoreCase, out IListfunctionOverloads) { EntityUtil.CheckStringArgument(fullName, "fullName"); // First look in CSpace EdmItemCollection edmItemCollection = (EdmItemCollection)m_metadataWorkspace.GetItemCollection(DataSpace.CSpace); var overloads = edmItemCollection.GetFunctions(fullName, ignoreCase); // If CSpace lookup failed, look in SSpace if (overloads == null || overloads.Count == 0) { ItemCollection storeItemCollection; if (m_metadataWorkspace.TryGetItemCollection(DataSpace.SSpace, out storeItemCollection)) { overloads = ((StoreItemCollection)storeItemCollection).GetCTypeFunctions(fullName, ignoreCase); } } functionOverloads = (overloads != null && overloads.Count > 0) ? overloads : null; return functionOverloads != null; } /// /// Return the metadata workspace /// internal MetadataWorkspace MetadataWorkspace { get { return m_metadataWorkspace; } } ////// returns the primitive type for a given primitive type kind. /// /// /// ///internal virtual bool TryGetMappedPrimitiveType(PrimitiveTypeKind primitiveTypeKind, out PrimitiveType primitiveType) { primitiveType = m_metadataWorkspace.GetMappedPrimitiveType(primitiveTypeKind, DataSpace.CSpace); return (null != primitiveType); } // // This property will be needed to construct keys for transient types // /// /// Returns the target dataspace for this perspective /// internal DataSpace TargetDataspace { get { return m_targetDataspace; } } #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
- precedingquery.cs
- BufferedWebEventProvider.cs
- FormView.cs
- SmiEventSink.cs
- HttpProcessUtility.cs
- BindingExpression.cs
- DataSourceXmlElementAttribute.cs
- InstanceOwnerException.cs
- TextEditorCharacters.cs
- LocationChangedEventArgs.cs
- FontFamilyIdentifier.cs
- RegexCaptureCollection.cs
- PenThreadPool.cs
- ComPlusAuthorization.cs
- RtfToken.cs
- CharEntityEncoderFallback.cs
- DebugView.cs
- GridViewRow.cs
- CompilerResults.cs
- SynchronizationFilter.cs
- RectangleGeometry.cs
- XPathBinder.cs
- DrawingContextWalker.cs
- SearchForVirtualItemEventArgs.cs
- RenderDataDrawingContext.cs
- XamlDesignerSerializationManager.cs
- QuerySelectOp.cs
- ValidatingPropertiesEventArgs.cs
- ZipIOLocalFileBlock.cs
- EntityViewContainer.cs
- AuthenticatingEventArgs.cs
- ComplexLine.cs
- _SSPISessionCache.cs
- QueuedDeliveryRequirementsMode.cs
- initElementDictionary.cs
- Int32AnimationBase.cs
- ProviderConnectionPoint.cs
- ActiveXContainer.cs
- RtfNavigator.cs
- XmlExtensionFunction.cs
- Array.cs
- DocumentReference.cs
- MenuAutoFormat.cs
- SecondaryViewProvider.cs
- AsyncPostBackTrigger.cs
- followingsibling.cs
- Label.cs
- XmlStringTable.cs
- SessionPageStateSection.cs
- EditableRegion.cs
- _AcceptOverlappedAsyncResult.cs
- Accessible.cs
- HeaderedContentControl.cs
- SmtpLoginAuthenticationModule.cs
- OleDbException.cs
- AsyncResult.cs
- ScalarType.cs
- BindingMAnagerBase.cs
- AutoScrollExpandMessageFilter.cs
- TextBoxDesigner.cs
- UIElementHelper.cs
- WindowsServiceCredential.cs
- EntityContainerRelationshipSet.cs
- ColorMap.cs
- ConfigurationManager.cs
- ApplicationSettingsBase.cs
- XmlJsonReader.cs
- XmlExpressionDumper.cs
- StaticSiteMapProvider.cs
- WebPartZone.cs
- CodeExporter.cs
- WindowsSolidBrush.cs
- DynamicValidator.cs
- IdnMapping.cs
- WebControl.cs
- CfgRule.cs
- Maps.cs
- DataGridViewControlCollection.cs
- FaultBookmark.cs
- WebPartMenuStyle.cs
- TabItemWrapperAutomationPeer.cs
- FileLoadException.cs
- SymLanguageVendor.cs
- TemplateNameScope.cs
- Operator.cs
- OdbcCommandBuilder.cs
- WebPart.cs
- UriTemplateLiteralQueryValue.cs
- DES.cs
- MailHeaderInfo.cs
- PipeStream.cs
- BuildProviderCollection.cs
- TimeSpanConverter.cs
- UserControlParser.cs
- DataGridViewColumn.cs
- DuplexClientBase.cs
- HeaderedItemsControl.cs
- AppDomainUnloadedException.cs
- ToolStripItem.cs
- DataGridViewColumnConverter.cs