Home / ASP.NET Weblogs

Browse by Tags

Related Posts

  • Athena - A LINQ to flickr API (Release 1.4)

    Last week, I released a new version of LINQ.flickr, which I named as Athena from release 1.4. It covers few features from flickr service, also now I have updated it with the latest LINQExtender (pre release version)  containing updated Object Tracking Service (OTS) that will enable it to update...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 08-02-2008, 12:00 AM
    Filed under: LINQ, C#, LinqExtender, Linq.Flickr, Athena
  • Making authenticated calls to flickr

    There are few things to know , when getting photos from your stream , adding comments and overall doing adding and deletion of your photos. As with flickr you can take a look at this url => http://www.flickr.com/services/api/auth.spec.html   for authentication spec to learn more. But with Athena...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 07-29-2008, 12:00 AM
    Filed under: LINQ, C#, Linq.Flickr, Athena
  • Replace SortedDictionary with LINQ query - Part 2 (with comparison)

    In my previous post , I have said that using LINQ query instead of SortedDictionary not only could be useful , elegant but also less processor intensive. In this post, I will show you a real comparison between the same the method but one with SortedDictionary and other with LINQ orderby query. I wrote...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 06-18-2008, 12:00 AM
    Filed under: LINQ, C#, Linq.Flickr, dottrace
  • Replace SortedDictionary with LINQ query

    With LINQ.Flickr it is quite necessary to get signature on parameters in order to do authenticated flickr photo get. As with the signature, it has to be sorted by parameter then to be hashed by MD5. Previously, I used to use SortedDictionary dictionary to do so, but thinking a little bit I learned that...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 06-17-2008, 12:00 AM
    Filed under: LINQ, C#, Linq.Flickr
  • Flickr web app with MVC preview 3 [Cont..]

    In my last post, I have mentioned of creating Flickr app with Asp.net MVC. In recent update I have modified it with Asp.net MVC Preview 3. You can find a general reference about the project here . But in this post, I will say, what are the changes due to the new release and where to start especially...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 05-31-2008, 12:00 AM
    Filed under: LINQ, C#, LinqExtender, Linq.Flickr, asp.net, MVC, Ajax, AspNetMvc
  • LINQ.Flickr 1.3

    Just released another version of LINQ.Flickr. The release is out with several bug fixes, code optimization, new feature and overall mocking support. I have used Typemock for the unit test of the product. In coming posts, I will show how powerful mock can be in faking routine like upload photo. But, you...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 05-05-2008, 12:00 AM
    Filed under: LINQ, C#, Linq.Flickr
  • LINQ.Flickr 1.2

    Last week, I have released LINQ.Flickr 1.2 , this new release comes with some bugs fixes requested by community. The best of them was not to be able to search only by user and with specific photo size. The bug started after converting it to use LinqExtender instead of its own query logic. So, now here...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 02-28-2008, 12:00 AM
    Filed under: LINQ, C#, Linq.Flickr, asp.net
  • REST with LINQ to XML

    With LINQ to XML, what I have learned so far, it's awesome, it is not only the first class concept of processing XML data, but also let you process a complex XML doc in the most simplest and readable way. I have a project called, Linq.Flickr , and I often need to process XML data for REST query. To show...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 01-11-2008, 12:00 AM
    Filed under: LINQ, C#, VS2008, Linq.Flickr, LINQ To Xml
  • Anonymous Type in LinqExtender

    It is now possible for LinqExtender implemented providers to have anonymous type in the select query. For example, consider the following SqlContext<Book> context = new SqlContext<Book>(); var query = (from q in context orderby q.LastUpdated descending select new { q.ISBN, q.Title}).Take...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 12-16-2007, 12:00 AM
    Filed under: LINQ, C#, LinqExtender, Linq.Flickr
  • Flickr Xplorer - An Asp.net MVC photo app for Flickr

    I have flushed out a little project at Codeplex called "Flickr Xplorer". Its a Flickr mesh up that lets you search(user, tag, text), jump into user photos, see popular and latest stream and moreover lets you browse the whole Flickr in hacked url way (url routing easy and rocking). The application is...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 05-27-2008, 12:00 AM
    Filed under: LINQ, Linq.Flickr, asp.net, MVC, Ajax, AspNetMvc, FlickrXplorer
Page 1 of 2 (12 items) 1 2 Next >