Query forum posts

This topic contains the following:

  • Querying a single post
  • Querying posts from a thread
  • Querying all posts

Querying a single post

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

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

Here is a code example of using the GetPost method:

 

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

Here is a code example of using the GetPosts method:

 

Querying all posts from a thread

To query all posts from a thread, you must perform the following:

  1. Get an instance of the manager.
    Get an instance of the ForumsManager object.
  2. Get the posts.
    To get the posts, you must call the GetPosts method of the manager and filter the query by the ID of the thread.

Here is a code example:

 

NOTE: Because it is possible to have a post without a thread, you must make a check whether the Thread property is null.

Querying all posts

To query all threads, you must perform the following:

  1. Get an instance of the manager.
    Get an instance of the ForumsManager object.
  2. Get the posts.
    To get the posts, you must call the GetPosts 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 forum posts