Modify lists

Sitefinity CMS allows you to modify a list through the Lists API.

When modifying a list, you must perform the following:

  1. Get the list.

    First, you get the list.

    For more information about querying lists, see For developers: Query lists.

    For more information about finding specific lists, see For developers: Find lists.

  2. Modify the list.

    After you get the list, you modify it.

  3. Save the list.

    Finally, you must save the changes.

Modifying a list by its ID

The following examples modify a list by its ID.

Native API

 

First, you get an instance of the ListsManager class. Then, you use GetLists to assure that the list with the specified Id exists.

Then, you modify the title of the list with newTitle. Finally, you call SaveChanges to save all changes.

Fluent API

 

First, you check whether a list with the specified ID exists using the plural facade of the list.

NOTE: If there is no item with the specified Id, List(listId) throws an exception of type ItemNotFoundException.

Then, you modify the title of the list with newTitle. Finally, you call SaveChanges to save all changes.

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

Delete lists