Home / ASP.NET Weblogs

Browse by Tags

Related Posts

  • LinqExtender 1.4.2 - Supporting Complex type arguments

    I just made a quick update to the existing release of LinqExtender. I recently found a bug while building a feature for FlickrXplorer is that if you use constant type query with orderby clause it does pretty well, but it simply does not do well with complex ones. I have used the same logic that I have...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 10-25-2008, 12:00 AM
    Filed under: LINQ, C#, LinqExtender
  • LinqExtender 1.4 - Enhanced object tracking

    Its been quite a while since I made any release of the toolkit. I basically, get into user requests, used it myself in LinqToFlickr project and came up with some new features and enhancements. In my last post, I already mentioned about comment and photo update feature in LinqToFlickr (Athena) , where...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 08-11-2008, 12:00 AM
    Filed under: C#, LinqExtender
  • 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
  • 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
  • Multiple Item support for same property in where clause : LinqExtender

    Just a few days ago I have rolled up another patch for LinqExtender which is 1.3.2 , this is reported to me from a work item, especially to support the following query var query = from book in _context.Books where book.PublishedDate > someDate and book.PublishedDate < someDate select book; .csharpcode...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 04-05-2008, 12:00 AM
    Filed under: C#, LinqExtender, LINQ Provider Toolkit
  • LinqExtender 1.3.1

    Last week, I have released a patch for LinqExtender project at Codeplex. You can find the full feature list at release page. One issue that I will talk about here is orderby clause and its related in-memory sort. Service based apps are of fixed set of operations. Now, it might happen that you need the...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 03-22-2008, 12:00 AM
    Filed under: LINQ, C#, LinqExtender
  • Article of the day at Asp.net

    My Creating custom LINQ provider using LinqExtender is article of the day at asp.net . Those of you haven't check that out yet, I would suggest to have a look, it shows the easiest way of creating LINQ providers without any Expression parsing knowledge. Have Fun!!
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 01-22-2008, 12:00 AM
    Filed under: LINQ, C#, LinqExtender, OpenLinqToSql
  • [New Article] Creating custom LINQ provider using LinqExtender

    First of all happy new year, secondly my new article is just published at Dotnetslackers. This explains the detail of creating custom LINQ providers using Linqextender. You can check that out at http://dotnetslackers.com/articles/csharp/CreatingCustomLINQProviderUsingLinqExtender.aspx Moreover, I would...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 01-08-2008, 12:00 AM
    Filed under: LINQ, C#, VS2008, LinqExtender, OpenLinqToSql
  • 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
  • LinqExtender 1.01 released

    I have released the new version of LinqExtender , it now support orderby queries Like I can easily do var query = from q in context where q.Id == 1 orderby q.Id descending select q; Also, I have uploaded a tiny linq to sql project named OpenLinqToSql which is built on LinqExtender and can be downloaded...
    Posted to Mehfuz's WebLog (Weblog) by mehfuzh on 12-10-2007, 12:00 AM
    Filed under: LINQ, C#, LinqExtender, OpenLinqToSql
Page 1 of 2 (17 items) 1 2 Next >