Browse by Tags
All Tags »
LINQ »
C# (RSS)
I’ve been reading Mike Taulty’s blog for ages now, and I love his balance of technologies, the length of his posts, and his style of writing. So if you’re not a subscriber, go check it out. But I just had to draw attention to his recent post – “ Anonymous
Read More...
Maybe I’m biased because he’s on the same team as me (ahem, sorry for the plug J ), but I really liked Stuart Leeks ’ post on improving the “Include” method on ObjectQuery<T>. It’s another example, like the MVC Framework he mentions, of how lamba
Read More...
I have to say, I love how easy it is to do SQL-like expressions over collections of objects with LINQ... If we have two simple classes that define our data; class Person { public int Id { get ; set ; } public string Name { get ; set ; } public int AddressId
Read More...
Background I’m in the process of writing a small windows application with a very straightforward architecture, for which the only twist is the need to be able to plug in different data providers according to how it is used. This means it must be able
Read More...