Small but powerful LINQ provider for Flckr with LINQ to SQL , like query flavour. Creating your own photo app, is just some queries away.
Update to 1.1.1 over 1.0
1. Bug fixes
2. Duplicate code clean up
3. Now it is possible to search by tag only , along with freetext
4. Attribute based mapping from Interface defintation to Flickr method, which is easlier to maintain.
Ex.
now it is possible to have
interface IFlickr
{
[FlickrMehod("flckr.echo")]
string Echo();
}
It defines that the interface willl call "flickr.echo" method.
1.0.1 is an refresh build of 1.0. so , from outside, the API remains the same, but from inside, there is some minor changes. The update is recomended , but not required.
Update to 1.1.2
1. Order By support DatePosted and DateTaken - > Ascending / desending
Possible query
from ph in context.Photos
where ph.ViewMode == ViewMode.Public&& ph.SearchText == 'Iphone' && ph.SearchMode == SearchMode.FreeText orderby PhotoOrder.Date_Posted descending ( or ascending, default ascending)
2. Update to new LinqExtender.dll , now it is possible to do anonymous query
Possible Query
from ph in context.Photos
where ph.PhotoSize == PhotoSize.Medium && ph.SearchText == "iphone" && ph.SearchMode == SearchMode.TagsOnly
orderby PhotoOrder.Date_Taken descending
select new { ph.Title, ph.Url }
Lastest Revision , 14832 , Please check source tab.