Entity Framework Specification Pattern Implementation

Basically, there should be nothing special (due to EF) when implementing the specification pattern. You implement the specifications as separate classes, which work with your domain model.

You can find lots of articles or webcasts about the specification pattern, and even some which use EF, e.g. here and here.

Leave a Comment