I am in the middle of building out some wcf endpoints to support the Dimecasts.net WP7 application I am going to publish. The code below is some of my main logic which helps grab the episodes. Because the data for Dimecasts is not very volatile I am going to do some basic (aka primitive)...
I’ve been working on the Silverlight client for the RavenDB . In Raven, you can write a Linq query in the Silverlight client that will ultimately be executed against a Raven server somewhere. The execution of the query is asynchronous and we want that to be explicit in the api. It should be obvious to...
I’m a big fan of Linq. The more I learn about functional programming, the more I love (and use) Linq. However with any higher level abstraction there is the possibility of the mysterious inner workings differing from your intuitive expectations. (This one of the dangers of frameworks being ‘too helpful...
Just as a reminder, even though you might have seen it before on twitter or nhforge or Ayende’s blog As of today, we released the first version of NHibernate.Linq. It is currently based on Criteria API, and can handle many situations that it can handle. NHibernate.Linq was the first project that...
I hate seeing code mixed with markup. Seeing a template page with <% if(show) { %> makes me want to claw my eyes out. Seeing String htmlTitle = "<h1>" + title + "</h1>" causes me to vomit up a little something in my throat. Mixing code with markup is not a...