Linq to Amazon implementation fore steps
Posted by: Fabrice's weblog,
on 29 Jun 2006 |
View original | Bookmarked: 0 time(s)
On Monday, I have announced an implementation of Linq for Amazon Web Services, that allows to query for books using the following syntax:var query = from book in new Amazon.BookSearch() where book.Title.Contains("ajax") && (book.Publisher == "Manning") && (book.Price <= 25) && (book.Condition == BookCondition.New) select book;Before getting to the details of the implementation code, I'd like to describe...