Thursday, August 28, 2008

RSS/ATOM feed extensions made easy

The easiest way to add custom elements to a syndicated (ATOM/RSS feed) is to use an XElement, like this:

SyndicationFeed feed = new SyndicationFeed("FeedName", "Feed description");

//fill feed with items (omitted)

XNamespace ns = "http://tempuri.org/myapp";

feed.ElementExtensions.Add(new XElement(ns + "myCustomProperty", "hello"));

return new Atom10FeedFormatter(feed) // to return as an atom feed


Happy feeding!

Wednesday, August 6, 2008

70-561 bookable

You can now book for 70-561. ADO.NET 3.5. Wich is what i'll do this week.

Sunday, August 3, 2008

Entity Framework will hit with VS2008 SP1

Finally its coming! With Visual Studio SP1, the final version of entity framework will be included.
I'm expecting the .NET 3.5 certification exam to go live shortly after, finally!