Home / ASP.NET Weblogs

Browse by Tags

Related Posts

  • Another Standard Deviation Extension for LINQ

    Just wanted to post my SDev extension for linq HopeFully someone will find it helpfull Happy coding all DK Module Module1 <Runtime.CompilerServices.Extension()> _ Function StDev( Of T)( ByVal Values As System.Collections.Generic.IEnumerable( Of T), ByVal selector As Func( Of T, Double )) Return...
    Posted to Lloyd McGhee (Weblog) by Dkultra on 10-03-2008, 12:00 AM
    Filed under: General Software Development, .NET, LINQ, Visual Basic
  • New Article: Self Sorting GridView with LINQ Expression Trees

    I just got finished writing one of the most exciting articles I've ever written. The concept is simple, but the code is fairly advanced, so if you're looking to get into some heavy LINQ code, then please check it out: www.singingeels.com/Articles/Self_Sorting_GridView_with_LINQ_Expression_Trees.aspx...
    Posted to Timothy Khouri - SingingEels.com (Weblog) by Nullable on 04-19-2008, 12:00 AM
    Filed under: General Software Development, .NET, Community News, LINQ
  • Developing Linq to LLBLGen Pro, part 14

    Update: I made a mistake in the first Linq to Sql query. It's not that slow as I previously posted. I didn't filter on country, which made it pull the rows of all 91 customers into memory instead of the 11. Fetching 91 customer rows, 818 order rows and 2015 order details rows took Linq to Sql over 900ms...
    Posted to Frans Bouma's blog (Weblog) by FransBouma on 03-07-2008, 12:00 AM
    Filed under: Database / SQL Server, Software Engineering, LLBLGen Pro, O/R Mapping, Advanced .NET, General Software Development, .NET, Linq, Linq to LLBLGen Pro
  • Developing Linq to LLBLGen Pro, part 13

    (This is part of an on-going series of articles, started here ) Last time I talked about implementing Single. It turned out to be fairly straightforward, but as I explained in the previous episode, it's a weird method and has different behavior related to where it's used in the query: sometimes it does...
    Posted to Frans Bouma's blog (Weblog) by FransBouma on 02-19-2008, 12:00 AM
    Filed under: Database / SQL Server, Software Engineering, LLBLGen Pro, O/R Mapping, Advanced .NET, General Software Development, .NET, Linq, Linq to LLBLGen Pro
  • Developing Linq to LLBLGen Pro, part 12

    (Updated Wednesday 30-jan-2008). It was mentioned that we would implement 'Skip' as well, although we already had a paging method added, TakePage(). After carefull analysis, we decided not to implement Skip for now. The reason is that it can lead to confusing queries, while paging is what the developer...
    Posted to Frans Bouma's blog (Weblog) by FransBouma on 01-29-2008, 12:00 AM
    Filed under: .NET General, Database / SQL Server, Software Engineering, LLBLGen Pro, O/R Mapping, Advanced .NET, General Software Development, .NET, Linq, Linq to LLBLGen Pro
  • Developing Linq to LLBLGen Pro, part 11

    (This is part of an on-going series of articles, started here ) In the previous post in this series , I mentioned that I had completed the work on all the major parts of a SELECT query. SELECT is what a Linq provider is all about (as Linq queries are focussed on fetching data, not manipulating it). It...
    Posted to Frans Bouma's blog (Weblog) by FransBouma on 01-15-2008, 12:00 AM
    Filed under: Software Engineering, LLBLGen Pro, O/R Mapping, Advanced .NET, General Software Development, .NET, Linq, Linq to LLBLGen Pro
  • Developing Linq to LLBLGen Pro, part 10

    (This is part of an on-going series of articles, started here ) Whoa, almost a month without an update! The truth is that I wanted to finish GroupBy support before posting another article in this ongoing series, and it took almost 3 weeks to get it right. But more on that later, first some easy stuff...
    Posted to Frans Bouma's blog (Weblog) by FransBouma on 12-21-2007, 12:00 AM
    Filed under: .NET General, Database / SQL Server, Software Engineering, LLBLGen Pro, O/R Mapping, Advanced .NET, General Software Development, .NET, Linq, Linq to LLBLGen Pro
  • Developing Linq to LLBLGen Pro, part 9

    (This is part of an on-going series of articles, started here ) So, how is the state of Linq to LLBLGen Pro ? Well, it's getting more and more the state I have in mind. The codebase today can handle SelectMany, GroupJoin, DefaultIfEmpty, elements at unexpected places, Let, Join, Select, Where, Take,...
    Posted to Frans Bouma's blog (Weblog) by FransBouma on 11-23-2007, 12:00 AM
    Filed under: Software Engineering, LLBLGen Pro, O/R Mapping, Advanced .NET, General Software Development, .NET, Linq, Linq to LLBLGen Pro
  • Developing Linq to LLBLGen Pro, part 8

    (This is part of an on-going series of articles, started here ) Today I managed to arrive back at the point I stopped with my current code base a couple of weeks ago to re-implement the expression tree reduction code. I'm not totally done with re-connecting the wires of the outer interface code to the...
    Posted to Frans Bouma's blog (Weblog) by FransBouma on 10-30-2007, 12:00 AM
    Filed under: .NET General, Software Engineering, LLBLGen Pro, O/R Mapping, Advanced .NET, General Software Development, .NET, Linq, Linq to LLBLGen Pro
  • Developing Linq to LLBLGen Pro, part 7

    (This is part of an on-going series of articles, started here ) Last time I talked about the switch to the approach where most Queryable extension methods should be seen as sets on their own. What happened after that? Well, initially, I continued on the path I had taken a few weeks ago: a stack based...
    Posted to Frans Bouma's blog (Weblog) by FransBouma on 10-28-2007, 12:00 AM
    Filed under: .NET General, Software Engineering, LLBLGen Pro, O/R Mapping, Advanced .NET, General Software Development, .NET, Linq, Linq to LLBLGen Pro
Page 1 of 3 (30 items) 1 2 3 Next >