Example #1
0
 public void LoadPostFromDB(Action action)
 {
     PinboardService.LockAndUsingDB(context =>
     {
         RefreshPostItems(context.Items.OfType <Post>());
         RefreshFeedItems(context.Items.OfType <FeedItem>(), true);
     }, false);
     if (action != null)
     {
         action();
     }
 }