Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
For the latest version of Commerce Server 2007 Help, see the Microsoft Web site.
The Catalog System enables you to delete multiple items in a single operation. To do this, use the DeleteItems method on the ProductCatalog object. You must specify a search clause. All items that match the search clause are deleted, and the number of deleted items is returned.
To delete multiple items
Create a search clause to specify the items to be deleted.
Use the DeleteItems method to delete the items in the catalog.
Example
This example describes how to delete multiple items from a catalog. It deletes all items that have a price less than $2.00. It then writes the number of deleted items to the console.
private static void DeleteMultipleItems(ProductCatalog catalog)
{
// Delete a category from the catalog.
int deletedItems = Catalog.DeleteItems("cy_list_price<2");
// Write the number of deleted items to the console.
Console.WriteLine("Number of deleted items: {0}", deletedItems);
}