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.
This topic explains how to delete albums. The examples below show you how to delete all of the available albums or how to delete only a specific album by its ID.
When deleting a specific album by its ID, you must perform the following:
Get the album.
First, get an instance of the album that corresponds to the specified ID.
Delete the album.
Mark the album to be deleted and save the changes.
The following code deletes an album by its ID.
Native API
First, you get an instance of the LibrariesManager class. Then, you get the album with the specified ID. To mark the album to be deleted, you call the DeleteAlbum method of the manager with the instance of the album as an argument. Finally, you save the changes.
Fluent API
First, you get the singular facade of the album with the specified ID. To mark the album to be deleted, you call the Delete method of the facade. Finally, you call SaveChanges.
When deleting all albums, you must perform the following:
Get all albums.
Get instances of the available albums.
Delete each album in the collection.
Iterate through the collection and delete each album.
The following code deletes all albums.
First, you get an instance of the LibrariesManager class. Then, you get all of the available albums. You iterate through the collection and mark each album to be deleted. Finally, you save the changes.
First, you get the plural albums facade. To mark each album to be deleted, you call 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