Beispiel #1
0
 // ClearFeedFromDatabase - Remove the feed from the database, ready for a refresh (this is faster
 //                          than trying to consolidate the data - and easier!)
 //
 private void ClearFeedFromDatabase(RSSFeed feed)
 {
     // Delete the Feed item, ensuring that the cascade delete exists in the database
     bool bDeleted = feedEntity.DeleteFeed(feed.ID);
 }