Simple Injector 2 – The future is here

Announcing the new major release of Simple Injector. The Simple Injector is an easy-to-use Inversion of Control library for .NET and Silverlight.

read more...

- filed under .NET General, Architecture, Dependency injection, Simple Injector - No comments / No trackbacks - §

Writing Highly Maintainable WCF Services

When it comes to writing maintainable software, there is no alternative to the five core principles of object oriented design. When software is based on these principles, everything becomes significantly easier. When your software is based on these principles, writing a highly maintainable WCF web service on top of that can be done in just a matter of minutes.

read more...

- filed under .NET General, Architecture, C#, Dependency injection - four comments / No trackbacks - §

Primitive Dependencies with the Simple Injector

This article describes how to extend the Simple Injector with convension based configuration for primitive constructor arguments.

read more...

- filed under .NET General, C#, Dependency injection, Simple Injector - No comments / No trackbacks - §

Returning data from command handlers

This article extends the architectural design of command handlers to allow command handlers to return data.

read more...

- filed under .NET General, Architecture, C#, Dependency injection, O/RM, Simple Injector - eight comments / No trackbacks - §

Meanwhile... on the query side of my architecture

Command-query separation is a common concept in the software industry. Although defined for behavior on a method level, the concept can be applied to classes and components as well. Fairly common are architectures where commands are separated from the rest of the system and sent as messages which are processed by ‘handlers’. This same concept of message passing is equally applicable on the query side. Unfortunately architectures like these are very uncommon. This article tries to change this. Two simple interfaces will change the look of your architecture... forever.

read more...

- filed under .NET General, Architecture, Dependency injection - seven comments / No trackbacks - §

Meanwhile... on the command side of my architecture

This article describes how one single interface can make the design of your application so much cleaner and flexible than you ever thought was possible.

read more...

- filed under .NET General, Architecture, C#, Dependency injection - thirteen comments / No trackbacks - §

Adding Covariance and Contravariance to the Simple Injector

A few weeks back I read this question on Stackoverflow. The question was about applying covariance / contravariance (or variance for short) to the Autofac dependency injection container. The question triggered me to think about variance support in the Simple Injector. I was wondering whether special changes were needed to the core framework to allow this. However, it didn't take me long to realize that enabling variance is actually pretty easy for anyone using the Simple Injector. The prerequisites are a proper application design and .NET 4.0.

read more...

- filed under .NET General, C#, Dependency injection, Simple Injector - one comment / No trackbacks - §

Faking your LINQ Provider part 2: Optimizing performance with fetching strategies

This sequel explains how to write O/RM specific performance optimizations in such a way that the core business logic won’t be affected. This article builds on top of the foundation described in part 1 and uses the Fetching Strategy design pattern to achieve this goal.

read more...

- filed under .NET General, C#, Dependency injection, Entity Framework, LINQ, LINQ to SQL, O/RM, Simple Injector, SQL - No comments / No trackbacks - §

Simple Injector: Working with multiple constructors

Although limited in features, the Simple Injector has simple but flexible way to add features, such as the possibility to work with multiple constructors.

read more...

- filed under .NET General, C#, Dependency injection, Simple Injector - two comments / No trackbacks - §

Simple Injector - The easiest Dependency Injection framework in town

The Simple Injector is an easy-to-use Inversion of Control library for .NET and Silverlight. It solely supports code-based configuration and is an ideal starting point for developers unfamiliar with larger IoC / DI libraries.

read more...

- filed under .NET General, C#, Simple Injector, Simple Service Locator - No comments / No trackbacks - §

Removing Keyed Registrations from the Simple Service Locator

In this post I again like to consult my Simple Service Locator users, readers of my blog, and followers of the Simple Service Locator CodePlex project, about a change to the library I'm considering.

read more...

- filed under .NET General, Simple Service Locator - two comments / No trackbacks - §

Do we need the Common Service Locator?

The Simple Service Locator has a hard dependency on the Common Service Locator. But is this a good design choice? I like to hear your opinion on this.

read more...

- filed under .NET General, Simple Service Locator - ten comments / No trackbacks - §

Faking your LINQ provider part 1

I recently tried to figure out how to write testable code while using LINQ to SQL as my O/RM of choice, without loosing the ability to use LINQ to Expression trees! In this post I describe the design I ender up with.

read more...

- filed under .NET General, ADO.NET, C#, Databases, Dependency injection, Entity Framework, LINQ, LINQ to SQL, O/RM - fifteen comments / No trackbacks - §

Adding Enum Support to Entity Framework LINQ queries

Roger Alsing wrote an interesting post yesterday about adding support for enums to LINQ queries. It is nice to see what Roger is doing with the .NET 4.0 ExpressionVisitor to change Expression trees that allow this behavior. What I dislike however, is that for this solution you need to reimplement all Queryable extension methods. So I thought about this and found a more pleasant way of intercepting query calls.

read more...

- filed under .NET General, C#, Databases, Entity Framework, LINQ, LINQ to SQL, O/RM, SQL - one comment / No trackbacks - §

Using IDataErrorInfo with Validation Application Block

The IDataErrorInfo interface is a core part of the .NET framework and both WPF and ASP.NET MVC use this interface for validation purposes. In this article I will show how to build an abstract base class that implements IDataErrorInfo in a way that Validation Application Block is used under the covers.

read more...

- filed under .NET General, C#, Enterprise Library, Validation Application Block - four comments / No trackbacks - §

Dependency Injection in ASP.NET Web Forms with the Common Service Locator

This article describes how to create and configure a custom PageHandlerFactory class that enables automatic constructor injection for System.Web.UI.Page classes. This keeps your application design clean and allows you to keep the application’s dependency to the IoC library to a minimum.

read more...

- filed under .NET General, C#, Dependency injection, Simple Service Locator - three comments / No trackbacks - §

Mixing Validation Application Block With DataAnnotation: What About SelfValidation?

This article describes how to move the self validation methods of a type to its meta data type, using Validation Application Block 5.0. Using self validation methods inside Data Annotations' meta data type is something that is not supported out of the box.

read more...

- filed under .NET General, C#, Enterprise Library, Validation Application Block - eight comments / No trackbacks - §

Integrating Validation Application Block with ASP.NET part 2

This post describes how to take integration of Validation Application Block with ASP.NET Web Forms to the next level by introducing extension methods that centralize the creation of PropertyProxyValidator controls and enable compile time support. This post build on the code in the previous article and allows users to define value conversions.

read more...

- filed under ASP.NET, C#, Enterprise Library, Validation Application Block - four comments / No trackbacks - §

Integrating Validation Application Block with ASP.NET part 1

This post describes how to take integration of Validation Application Block with ASP.NET Web Forms to the next level by introducing extension methods that centralize the creation of PropertyProxyValidator controls and enable compile time support.

read more...

- filed under ASP.NET, C#, Enterprise Library, Validation Application Block - four comments / No trackbacks - §

CuttingEdge.Conditions source used for MongoDB .NET Driver

Since I built CuttingEdge.Conditions, I had lots of positive reactions from developers who loved it. However, I've never saw the source code been reused in another library or framework; until now.

read more...

- filed under .NET General, C#, CuttingEdge.Conditions - four comments / No trackbacks - §

Breaking changes in SmtpClient in .NET 4.0

In .NET 4.0 the SmtpClient class now implements IDisposable. This is a breaking change what you should watch out for.

read more...

- filed under .NET General - No comments / No trackbacks - §

Protecting against Regex DOS attacks

Bryan Sullivan describes in the May issue of his MSDN article a denial of service attack that abuses regular expressions. As Bryan explains, a poorly written regex can bring your server to its knees.

read more...

- filed under .NET General, Security - No comments / No trackbacks - §

Breaking changes in .NET 4.0

Microsoft published an interesting list of breaking changes in the just released .NET 4.0 framework.

read more...

- filed under .NET General - No comments / No trackbacks - §

Validator inheritance while using Validation Application Block configuration files

This article describes how to build an IConfigurationSource implementation that allows validators, defined in a base class or interface, to be inherited by subclasses and implementations.

read more...

- filed under .NET General, C#, Enterprise Library, Validation Application Block - two comments / No trackbacks - §

Splitting up Validation Application Block configuration into multiple files

This article describes how to build an IConfigurationSource implementation that allows reading multiple configuration files that each contain part of the total Enterprise Library Validation Application Block configuration.

read more...

- filed under .NET General, C#, Enterprise Library, Validation Application Block - two comments / No trackbacks - §

Printer Jam

The last couple of days I've been having a Printer Jam on my way to work.

read more...

- filed under Miscellaneous - one comment / No trackbacks - §

Simple Service Locator - The easiest Inversion of Control framework in town

The Simple Service Locator is an easy-to-use Inversion of Control library that is a complete implementation of the Common Service Locator interface. It solely supports code-based configuration and is an ideal starting point for developers unfamiliar with larger IoC / DI libraries

read more...

- filed under .NET General, C#, Dependency injection, Simple Service Locator - eight comments / No trackbacks - §

CuttingEdge.Conditions in MSDN Magazine Toolbox column

In the November 2009 issue of his MSDN Magazine Toolbox column, Scott Mitchell writes about CuttingEdge.Conditions.

read more...

- filed under CuttingEdge.Conditions - No comments / No trackbacks - §

Vote for Visual Studio Text Editor Guidelines to Return

Visual Studio 2005 and 2008 contain a (not officially supported) feature that allows display of vertical guidelines in the (code) text editor. Visual Studio 2010 however, seems to completely miss this feature. I created a feature request on Microsoft Connect. Please help and vote for this feature to return.

read more...

- filed under Visual Studio - one comment / No trackbacks - §

Sorting entities with the EntitySorter

This article describes the EntitySorter<T> class. It's a nifty little thing that allows the presentation layer to instruct the service layer how collections should be returned.

read more...

- filed under .NET General, C#, Entity Framework, LINQ, LINQ to SQL - five comments / No trackbacks - §

Putting the Validation Application Block configuration in its own file

This article describes how to extract the validation configuration to its own file and allow this to also work with unit tests.

read more...

- filed under Enterprise Library, Validation Application Block - five comments / No trackbacks - §

Integrating Enterprise Library Validation Application Block With LINQ to SQL and Entity Framework Part 4: Using Metadata to Automate Validations

This article describes how to extract information from your generated LINQ to SQL entities to automate validations like maximum string length and disallowing null values.

read more...

- filed under .NET General, C#, Enterprise Library, Entity Framework, LINQ, LINQ to SQL, O/RM, Validation Application Block - No comments / No trackbacks - §

Research on botnets

I just watched an amazing Google Talk video on YouTube that explains how botnets work.

read more...

- filed under Science, Security - No comments / No trackbacks - §

Preventing Cross-site Request Forgery (CSRF) Attacks Using ViewState

This article describes what Cross-site request forgery attacks are and how to mitigate them.

read more...

- filed under ASP.NET, C#, Security - No comments / No trackbacks - §

Microsoft Anti-Cross Site Scripting Library 3.1 released

The Microsoft Anti-Cross Site Scripting Library (Anti-XSS) is an encoding library designed to help developers protect their ASP.NET web-based applications from XSS attacks.

read more...

- filed under ASP.NET, Security - No comments / No trackbacks - §

NDepend

For over three years I've been using NDepend. In this post I'll describe my thoughts on NDepend.

read more...

- filed under .NET General, LINQ - one comment / No trackbacks - §

CuttingEdge.Conditions version 1.0 released

Last week I published the first stable release of CuttingEdge.Conditions.

read more...

- filed under .NET General, C#, CuttingEdge.Conditions, LINQ - No comments / No trackbacks - §

Removing Otherwise method from CuttingEdge.Conditions

In this post I’ll describe another breaking change I’m making to my open source project, CuttingEdge.Conditions.

read more...

- filed under .NET General, C#, CuttingEdge.Conditions, LINQ - No comments / No trackbacks - §

Controversial change in CuttingEdge.Conditions

In this post I’ll describe a controversial change I’m making in my open source project, CuttingEdge.Conditions.

read more...

- filed under .NET General, C#, CuttingEdge.Conditions, LINQ - No comments / No trackbacks - §

The evilness of ApplicationException

This post explains what’s wrong with ApplicationException and why it should not be used.

read more...

- filed under .NET General - two comments / No trackbacks - §

Book: Microsoft .NET: Architecting Applications for the Enterprise.

Last month I read ‘Microsoft .NET: Architecting Applications for the Enterprise’, written by Dino Esposito and Andrea Saltarello. This book is a great piece of work.

read more...

- filed under .NET General, Books - No comments / No trackbacks - §

Free C# 3.0 Pocket Reference ebook

Just found this free ebook on the Red Gate site:

read more...

- filed under Books, C# - No comments / No trackbacks - §

Choosing FxCop rules for Line Of Business applications

Dennis Doomen, architect at Aviva Solutions, published a set of C# 3.0 Coding Guidelines a few months ago. While a lot of different C# coding guidelines can be found on the web, this one caught my attention.

read more...

- filed under .NET General, C# - No comments / No trackbacks - §

Porting a LINQ to SQL to Entity Framework project

The Entity Framework Design blog just published a template that enables converting a LINQ to SQL .dbml file to a Entity Framework .edmx file.

read more...

- filed under ADO.NET, Entity Framework, LINQ, LINQ to SQL - No comments / No trackbacks - §

NCover supports CuttingEdge.Conditions

The NCover team has supported my open source CuttingEdge.Conditions project by donating a license of this cool tool.

read more...

- filed under CuttingEdge.Conditions, Visual Studio - No comments / No trackbacks - §

I went to the DevDays...

... and all I got was this lousy CodePlex Sticker.

read more...

- filed under default - No comments / No trackbacks - §

Integrating Enterprise Library Validation Application Block with LINQ to SQL and Entity Framework Part 3: The complexity of custom validators.

This article shows the complexity a developer is facing, implementing a custom validator while using an O/RM tool. While the article uses the Validation Application Block and LINQ to SQL in writing the validation logic, the problems encountered in the article are very general.

read more...

- filed under .NET General, C#, Enterprise Library, Entity Framework, LINQ to SQL, O/RM, SQL, Validation Application Block - No comments / No trackbacks - §

Protecting against XML Entity Expansion attacks

Tom Hollander describes on his blog a denial of service attack I never knew the existence of, called XML Entity Expansion attack. Tom explains how to bring a server to its knees when allowing any type of xml document as input and passing it directly to an XmlDocument for parsing.

read more...

- filed under .NET General, Security - No comments / No trackbacks - §

Integrating Enterprise Library Validation Application Block with LINQ to SQL and Entity Framework Part 2: Using context within custom validators.

This article describes how to write custom validators for the Enterprise Library Validation Application Block, in such a way that it runs within the context of a specific LINQ to SQL DataContext or Entity Framework ObjectContext class, which allows analysis of non-persisted (in-memory) changes in that context.

read more...

- filed under .NET General, C#, Enterprise Library, Entity Framework, LINQ, LINQ to SQL, O/RM, Validation Application Block - two comments / No trackbacks - §

Integrating Enterprise Library Validation Application Block With LINQ to SQL and Entity Framework Part 1: Basic Integration

This article describes how to integrate the Enterprise Library Validation Application Block in conjunction with an O/RM technology such as LINQ to SQL and Entity Framework.

read more...

- filed under .NET General, C#, Enterprise Library, Entity Framework, LINQ, LINQ to SQL, O/RM, Validation Application Block - sixteen comments / No trackbacks - §

Spell checkers for Visual Studio

One good spell checker and one really bad spell checker plug-in for Visual Studio.

read more...

- filed under .NET General, Visual Studio - one comment / No trackbacks - §

The true danger of SQL Injection Attacks

This article describes the true danger of SQL injection attacks. The article shows how a hacker can steal your sensitive business data, even when your website connects to your database with a normal non-privileged login account.

read more...

- filed under Databases, Security, SQL - six comments / No trackbacks - §

Microsoft and DevExpress announce free CodeRush Xpress for C#

This was announced some time ago at the PDC2008, but I just found out after watching the PDC session on Tips And Tracks For The Visal C# IDE.

read more...

- filed under C#, Visual Studio - No comments / No trackbacks - §

The death of LINQ to SQL

The Microsoft ADO.NET team blog made an important announcement yesterday about the future of LINQ to SQL.

read more...

- filed under .NET General, ADO.NET, C#, Databases, LINQ, SQL - one comment / No trackbacks - §

A Temperature struct for .NET

Did you ever wonder why .NET doesn't have a Temperature type? I suppose not, because I didn't find any implementation of such a thing on the internet.

read more...

- filed under C# - four comments / No trackbacks - §

The .NET 3.5 SP1 JIT changed for worse

The .NET JIT compiler has changed with the new SP1 release of the .NET 3.5 framework. Microsoft claims it's faster. I claim the opposite!

read more...

- filed under .NET General, C# - four comments / No trackbacks - §

Extending CuttingEdge.Conditions

In a previous post I introduced CuttingEdge.Conditions, a library that helps developers to write pre- and postcondition validations in their .NET 3.5 code base. In this post I'll explain how you can extend the library.

read more...

- filed under .NET General, C#, CuttingEdge.Conditions, LINQ - No comments / No trackbacks - §

Introducing CuttingEdge.Conditions

CuttingEdge.Conditions is a library that helps developers to write pre- and postcondition validations in their .NET 3.5 code base. Writing these validations is easy and it improves the readability and maintainability of code.

read more...

- filed under .NET General, C#, CuttingEdge.Conditions, LINQ - seven comments / No trackbacks - §

Dear C# Language Designers

Have you ever wondered why the C# language doesn't have a specific feature, or why it works the way it does? As a matter of fact, I did, and I mailed them over a year ago. I never got an answer though. Now I'm publishing this mail, hoping to start a good discussion.

read more...

- filed under C# - four comments / No trackbacks - §

My Own Fluent Argument Validation Library

The last couple of days I had some spare time. What does a workaholic do with spare time? Exactly: he builds his own library. :-)

read more...

- filed under .NET General, C#, CuttingEdge.Conditions, LINQ, Visual Studio - four comments / No trackbacks - §

Visual studio bug: Generic extension method doesn't show up in IntelliSense

I just reported a bug on the Microsoft Connect site about a quirk in the C# IntelliSense feature regarding generic extension methods.

read more...

- filed under .NET General, C#, LINQ, Visual Studio - two comments / No trackbacks - §

Inlining of value types

Great news is coming from the .NET Runtime Team. The new coming service pack for the .NET framework addresses inlining of value types.

read more...

- filed under .NET General - No comments / No trackbacks - §

Spec#, Love you long time!

I'll repeat Greg Young and Fredrik Normén here.

read more...

- filed under .NET General - No comments / No trackbacks - §

Book: Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries

It has already been several months since I purchased the book Framework Design Guidelines by Krzysztof Cwalina and Brad Abrams. Since that time it proved itself to be invaluable. When you design or write reusable libraries or are concerned with the quality and usability of your API, this book is for you.

read more...

- filed under .NET General, Books - No comments / No trackbacks - §

Defensive programming, Design by Contract and Spec#

read more...

- filed under .NET General, C# - No comments / No trackbacks - §

ReadOnlyDictionary

This article describes an implementation of a ReadOnlyDictionary <TKey, TValue> that's missing from the .NET framework.

read more...

- filed under .NET General, C# - 27 comments / No trackbacks - §

Channel 9 video: The Future of Languages

Here's a link to a very interesting Channel 9 interview with Anders Hejlsberg, Herb Sutter, Erik Meijer, Brian Beckman about Software Composability and the Future of Languages.

read more...

- filed under .NET General - No comments / No trackbacks - §

C# using statement – the lazy version

While discussing the C# using statement with a colleague of mine, we discovered that there was a shorter version of the using statement possible.

read more...

- filed under C# - No comments / No trackbacks - §

ASP.NET Provider Model Template for Visual Studio (download)

This article describes my Visual Studio 2005 / Visual Studio 2008 template for rolling your own custom provider on the ASP.NET 2.0 Provider model. The model is actually not restricted to ASP.NET and this template allows you to create your custom provider for every type of .NET application, including console and forms applications.

read more...

- filed under .NET General, ASP.NET, C#, Visual Studio - two comments / No trackbacks - §

Converting hex to int

The easiest way to convert a hexadecimal string to an integer is using System.Convert.

read more...

- filed under .NET General, C# - No comments / No trackbacks - §

The constructor conflict

Sometimes I'm wondering strange things. For instance, this morning I was wondering if a static constructor of a class can create an instance of itself. It seemed to me this would be a conflicting requirement, because a classes constructor will only run after it's static constructor has run.

read more...

- filed under C# - two comments / No trackbacks - §

Book: SQL Server Query Performance Tuning Distilled

Last two months I have been reading SQL Server Query Performance Tuning Distilled (Second Edition) by Sajal Dam.

read more...

- filed under Books, Databases - No comments / No trackbacks - §

Custom Parameter Gotcha

This article describes a little gotcha that might emerge when writing a custom parameter that derives from System.Web.UI.WebControls.Parameter.

read more...

- filed under ASP.NET, C# - No comments / No trackbacks - §

Code Consistency With Asynchronous Exceptions

Three weeks ago Joe Duffy published an article about 'Monitor.Enter, thread aborts, and orphaned locks' on his blog. After reading this article and responding to it (see my comments), I was pretty much in shock. I came to the conclusion that the C# ‘using’ statement isn't 100% safe.

read more...

- filed under .NET General, C# - two comments / No trackbacks - §

Nested Master Pages Until Orcas

This article describes how to inherit your .aspx pages from a custom class, in such a way that you can use nested master pages, without getting that terrible 'Design view does not support creating or editing nested master pages. To create or edit nested master pages, use Source view' from the Visual Studio Designer.

read more...

- filed under ASP.NET, Visual Studio - No comments / No trackbacks - §

Human Computation

I came across this Google Tech Talk about Human Computation by Luis Von Ahn. Luis talks about how he uses humans to solve problems computers can't. His talk is really fascinating and funny. You should watch it!

read more...

- filed under Science - No comments / No trackbacks - §

Microsoft Anti-Cross Site Scripting Library V1.5.

Microsoft's ACE Team, announced the release of the Anti-Cross Site Scripting (XSS) Library version 1.5.

read more...

- filed under ASP.NET, Security - No comments / No trackbacks - §

Nine Things Developers Want More Than Money

Here's a great article about passionate software developers. It is a must-read for every software developer.

read more...

- filed under default - No comments / No trackbacks - §

Optimizing C# Refactoring Performance with Web Projects in VS 2005

ScottGu has blogged about this over 9 months ago, but I had some trouble finding that blog again. So this is for my own memory: Optimizing C# Refactoring Performance with Web Projects in VS 2005.

- filed under ASP.NET - No comments / No trackbacks - §

Fixing connection pooling timeout exceptions on third-party code

When a Connection object throws an exception and tells you 'all pooled connections were in use and max pool size was reached', it usually has to do with bad code. Fixing it could however be a problem if you don't own the source code. In this article a quick and dirty workaround for this connection timeout problem is proposed.

read more...

- filed under ADO.NET, C#, Databases - two comments / No trackbacks - §