예제 #1
0
 public static void RebuildAllTags(this ObjectProvider repository)
 {
     foreach (var day in repository.GetBlogPostsForHomePage(0, PostConfig.None))
     {
         foreach (var entry in day)
         {
             repository.SetEntryTagList(entry.Id, entry.Body.ParseTags());
         }
     }
 }