Create a news item with the Fluent API
Use the code example below to create a news item and to set its Title and Content with the Fluent API. In the example below, you perform the following:
- Set the properties of the news item by calling the
Domethod of the facade. - Set the state of the news item to published.
- Save the changes to the facade.
Create a news item with the Fluent API
C#
var masterNewsId = Guid.NewGuid();
App.WorkWith().NewsItem().CreateNew(masterNewsId)
.Do(newsItem =>
{
newsItem.Title = title;
newsItem.Content = content;
})
.Publish()
.SaveChanges();
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.
Get started with Integration Hub | Sitefinity Cloud
This free lesson teaches administrators, marketers, and other business professionals how to use Sitefinity Integration Hub to create automated workflows between Sitefinity and other business systems.
Web Security for Sitefinity Administrators
This free lesson teaches administrators the basics about protecting your Sitefinity instance and your sites from external threats. 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 ASP.NET Core and take advantage of its decoupled architecture and modern development model.