When to use Stored Procedures?
No coding blog would be complete without an overly-simplistic salvo fired into this bloody online battlefield, so here's mine.What if you're writing an application that will make heavy use of an...
View ArticleRecovery
If you want your application to be able to recover from a crash, it would NOT be ideal for it to restore the exact state it was in immediately before the crash, because then it would just crash...
View ArticleVC++16 has decltype in Beta 1 (so Linq to C++0x looks a little nicer)
This post has moved to my new(er) blog and can be found here: http://smellegantcode.wordpress.com/2009/05/22/vc16-has-decltype-in-beta-1-so-linq-to-c0x-looks-a-little-nicer/A while ago I wrote up a...
View ArticleLazy Sequence Generation without using Yield Return
C# has the yield return feature, which makes it easy to write state machines as if they were plain old methods:class Program { static IEnumerable<int> SomeNumbers() {...
View ArticleGeneric Value Object With Yield Return
Inspired by this and this, here's my version.Jan Van Ryswyck is right to use static reflection, and to do that he "registers" the properties in a list. On the other hand, assuming you'd have a lot of...
View ArticleChain – a LINQ operator for dealing with Linked Lists
I don’t think there’s anything in LINQ that will do this, though I expect I’m wrong - I have a tendency to write my own extension method to do something and then discover that LINQ already provides a...
View Article