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.
Sitefinity CMS allows you to delete list items through the Lists API.
When deleting a list item, you must perform the following:
Get the list item.
First, you must get the master version of the list item corresponding to the specified ID.
For more information about querying list items, see For developers: Query list items
For more information about finding specific list items, see For developers: Find list items.
Delete the list item.
After you get the master version of the list item, you delete it.
Save the changes.
Finally, you must save the changes.
To delete a list item you can use the Native API or the Fluent API.
NOTE: The code examples below work with the ID of the master version of the list item. Deleting the master version also deletes the other versions of the item. For more information about deleting items using the ID of the live version, see For developers: Delete content.
The following examples delete a list item by the ID of its master version.
Native API
First, you initialize the ListsManager. Then, you get the master version of the list item using GetListItems and filtering based on the Idproperty.
To delete the list item, you call the DeleteListItem method passing the master version as argument. Finally, you save the changes.
Fluent API
First, you initialize the plural facade of the list item using App.WorkWith().ListItems(). Then, you filter based on the Id property to assure that the list item exists.
To get the master version of the list item, you use the singular facade.
NOTE: If there is no list item with the specified Id, ListItem(masterListItemId) throws an exception of type ItemNotFoundException.
To delete the list item, you use the Delete method of the facade. Finally, you save the changes.
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