Tag Archives: .NET

On Database Migrations in .NET

For my next post, I’m planning to review a really solid Ruby on Rails book I’ve been reading. In that book, I once again encountered the Ruby database migrations project. I’d come across a .NET port a while back, but … Continue reading

Tagged , , | Leave a comment

On a Simple IronPython Dependency Injection Framework

Continuing with my “IronPython will end world hunger series,” I’m again shamelessly self/cross-promoting a Code Voyeur article that I think it’s worth a read. A Simple IronPython Dependency Injection Framework It’s not Spring.NET and it’s not Windsor, but I really … Continue reading

Tagged , , , | 2 Comments

On a Simple IronPython Validation Framework

I do try to keep the content between Code Voyeur and dll Hell distinct. OK, there’s not much content on either… But I think my latest (up to 4!, that’s 4 not 4 factorial) article on Code Voyeur is a … Continue reading

Tagged , , , | 2 Comments

On Cookies and Data Binding with SmartDispatcherController

MonoRail’s SmartDispatcherController will automatically bind controller method parameters to request parameters. So the arg0 and arg1 parameters in the method below – public void DoSomething(string arg0, int arg1) { … } will have the values castle and 5 respectively when … Continue reading

Tagged , | Leave a comment

On an Alternative to the var Keyword in C#

I recently attending a meeting of the Fairfield / Westchester .NET User Group, in which Richard Hale Shaw presented on LINQ and C# 3.5 features. During the presentation there was a brief but spirited debate over the use of the … Continue reading

Tagged , | 2 Comments

On C# Language Enhancements

I’ve finally begun my long overdue introduction to LINQ. It’s too early for me to comment in any meaningful way on LINQ as an enhancement to C#. But I will discuss what I think is an interesting trend in C#’s … Continue reading

Tagged , , | Leave a comment