Adxstudio.Xrm.KnowledgeArticles.KnowledgeArticleDataAdapter.ToRelatedProducts(Microsoft.Xrm.Sdk.EntityCollection)

Here are the examples of the csharp api class Adxstudio.Xrm.KnowledgeArticles.KnowledgeArticleDataAdapter.ToRelatedProducts(Microsoft.Xrm.Sdk.EntityCollection) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: xRM-Portals-Community-Edition
Source File: KnowledgeArticleDataAdapter.cs
public virtual IEnumerable<IRelatedProduct> SelectRelatedProducts(IEnumerable<EntityCollection> entityCollections)
			{
			var productCollection = entityCollections.FirstOrDefault(e => e.EntityName.Equals("product"));
			return this.ToRelatedProducts(productCollection);
			}