Query forums

This topic contains the following:

  • Querying a single forum
  • Querying forums from a group
  • Querying all forum

Querying a single forum

To query a single forum, you must perform the following:

  1. Get an instance of the manager.
    Get an instance of the ForumsManager object.
  2. Get the specified forum.
    To get the specified forum, you can either call the GetForum method of the manager and pass the ID of the forum as an argument, or call the GetForums method of the manager and filter the collection by the ID or the name of the forum.

Here is a code example of using the GetForum method:

 

NOTE: If the forum does not exist, the method throws an exception of type Telerik.Sitefinity.SitefinityExceptions.ItemNotFoundException.

Here is a code example of using the GetForums method:

 

Querying all forums from a group

To query all forums from a forum, you must perform the following:

  1. Get an instance of the manager.
    Get an instance of the ForumsManager object.
  2. Get the forums.
    To get the forums, you must call the GetForums method of the manager and filter the query by the ID of the group.

Here is a code example:

 

NOTE: Because it is possible to have a forum without a group, you must make a check whether the Group property is null.

Querying all forums

To query all forums, you must perform the following:

  1. Get an instance of the manager.
    Get an instance of the ForumsManager object.
  2. Get the forums.
    To get the forums, you must call the GetForums method of the manager.

Here is a code example:

Increase your Sitefinity skills by signing up for our free trainings. Get Sitefinity-certified at Progress Education Community to boost your credentials.

Web Security for Sitefinity Administrators

The free standalone Web Security lesson teaches administrators how to protect your websites and Sitefinity instance from external threats. Learn to configure HTTPS, SSL, allow lists for trusted sites, and cookie security, among others.

Foundations of Sitefinity ASP.NET Core Development

The free on-demand video course teaches developers how to use Sitefinity .NET Core and leverage its decoupled architecture and new way of coding against the platform.

Was this article helpful?

Next article

Modify forums