IMPORTANT: This version of Sitefinity CMS is out of support and the respective product documentation is no longer maintained and can be outdated. Use the version selector to view a supported product version.
When querying the live version of a specific news item by the ID of its master version, you must perform the following:
NOTE: You use the live version only to display the news on the frontend. If you want to edit the news item, you must use the master version. To transfer the changes to the live version, publish the master version.
The following code examples query the live version of a news item by the ID of its master version:
Query news items with the Native API
First, you get an instance of the NewsManager class. You get the news item by querying all items and filtering the collection by the ID of the news item. If the item exists, you get its live version. If no live version exists, for example, the item is not published, you return null. Finally, you return the news item.
You can also use the following code to retrieve the news item:
NewsItem item = newsManager.GetNewsItem(newsId);
NOTE: When the item does not exist, the system throws an exception of type ItemNotFoundException.
Query news items with the Fluent API
First, you get the NewsItem singular facade of the master version with the specified ID. Then, to load the live version of the item, you call the GetLive method. Finally, you call the Get method to get the instance of the live version.
Back To Top
To submit feedback, please update your cookie settings and allow the usage of Functional cookies.
Your feedback about this content is important