Query dynamic content by related data

In the following example, you use the Sitefinity CMS API to query dynamic content items by their reltaed data fields. In the example, you use two dynamic module types:

  • Physicians
  • Specialties

Physicianshave a related data field to the Specialties type. Using a specific specialty, for example Neurology, you can query all physicians that have that specialty. To do this, use the following code:

C#
using System;
using System.Linq;
using Telerik.Sitefinity.Data.ContentLinks;
using Telerik.Sitefinity.Model;

namespace SitefinityWebApp
{
   public class GetAllRelationsByParent
   {
       public IQueryable<IDataItem> GetRelationsByParent(Guid itemId, string itemProviderName, string itemTypeName, string fieldName)
       {
           ContentLinksManager contentLinksManager = ContentLinksManager.GetManager();

           var linksToRelatedItems = contentLinksManager.GetContentLinks()
               .Where(cl => cl.ParentItemId == itemId && 
                   cl.ParentItemProviderName == itemProviderName && 
                   cl.ParentItemType == itemTypeName && 
                   cl.ComponentPropertyName == fieldName);
           
           return linksToRelatedItems;

       }
   }
}

Make sure you include the namespaces that resolve the types you use in the query. In this example, you need to include in your project the following namespaces:

C#
using System;
using System.Linq;
using Telerik.Sitefinity.Data.ContentLinks;
using Telerik.Sitefinity.Model;

namespace SitefinityWebApp
{
   public class GetAllRelationsByChild
   {
       public IQueryable<IDataItem> GetRelationsByChild(Guid itemId, string itemType, string itemProviderName, string parentItemTypeFullName)
       {
           ContentLinksManager contentLinksManager = ContentLinksManager.GetManager();

           var links = contentLinksManager.GetContentLinks()
               .Where(cl => cl.ChildItemId == itemId &&
                   cl.ChildItemType == itemType &&
                   cl.ChildItemProviderName == itemProviderName &&
                   cl.ParentItemType == parentItemTypeFullName);

           return links;
       }
   }
}

As a result, all physicians that have Neurology specialty are queried.

Want to learn more?
Enhance your Sitefinity skills by enrolling in free training sessions. Become Sitefinity certified through Progress Education Community to strengthen your professional credentials.
New to Sitefinity?