/// <summary> /// Gets the map nodes contained in a map from a Glyma repository. /// </summary> /// <param name="repositoryName">The name of the Glyma repository.</param> /// <param name="domainId">The GUID of the map node's domain.</param> /// <param name="rootMapId">The GUID of the node's root map.</param> /// <param name="mapId">The GUID of the map node's parent map.</param> /// <param name="nodeId">The GUID of the map node to retrieve nodes from.</param> /// <param name="lastCrawlStartTime">Specifies the last crawl time.</param> /// <param name="entityFields">A ITypeDescriptorCollection object that contains the fields to retrieve for each node.</param> /// <returns>A collection of DynamicType objects containing details of the nodes retrieved from a Glyma repository.</returns> /// <remarks>This is intended to be used as an AssociationNavigator method for a map entity in a BCS model.</remarks> public List <DynamicType> GetMapNodesInMap(string repositoryName, Guid domainId, Guid rootMapId, Guid mapId, Guid nodeId, DateTime lastCrawlStartTime, ITypeDescriptorCollection entityFields) { GlymaSearchLogger.WriteTrace(LogCategoryId.Connector, TraceSeverity.Verbose, "GetMapNodesInMap(" + repositoryName + ", " + domainId + ", " + rootMapId + ", " + mapId + ", " + nodeId + ")"); List <DynamicType> nodes = MapRepository.GetNodesInMap(repositoryName, nodeId, entityFields, true); nodes.RemoveAll(node => !CrawlRules.Apply(node, MapRepository)); return(nodes); }