Up on CodePlex there is a LINQ provider for FlickR.
There is some reference doc here but the code basically looks like:
FlickrContext context = new FlickrContext(); var query = from ph in context.Photos where ph.Id == PhotoId && ph.PhotoSize == PhotoSize.Medium select ph;
PingBack from http://msdnrss.thecoderblogs.com/2008/02/17/linq-to-flickr-this-is-cool/
Angus Logan's Blog : LINQ to FLICKR - th...