This morning I decided to finally update my blog to the latest version. It's one of those things that I have been meaning to do for a while but wasn't to excited about since I was a few versions behind. All in all it was pretty straight forward and things just worked. I use the default xml provider so I am not sure what database issues there might of been.
If you are looking to upgrade your own installation I would recommend taking a look at the upgrade guides by Al Nyveldt that walk you through the upgrade process for each major update.
I did have a problem with the Silverlight Slide Show Extension I put together not working but it was a quick fix. I just had to change one line of code:
Chaged:
public SilverlightSlideShow()
{
Post.Serving += Post_Serving;
}
To:
public SilverlightSlideShow()
{
Post.Serving += new EventHandler<ServingEventArgs>(Post_Serving);
}
For an example of what the extension does check out http://beckelman.net/post/2008/05/19/Pictures-From-Manual-Antonio2c-Costa-Rica.aspx.