Tagged Questions
The specification-pattern tag has no wiki summary.
7
votes
1answer
188 views
Is it ok to call specifications from an aggregate factory for validation, or does that validation call belong in a unit test (DDD)?
I have created a factory and a set of specifications to create and validate an aggregate root. Currently I have some tests for the factory that call the specifications on the product of the factory, ...
6
votes
2answers
4k views
Specification Pattern Example
After reading a series of blogs (here and here) by Chris Missal from LosTechies.com on the Specification Pattern I am am really interested in finding more complete examples. Does anyone know where I ...
5
votes
4answers
696 views
Specification Pattern defined in Domain
Using Linq to SQL, and a DDD style Domain Layer with de-coupled repositories, does anyone have any good ideas on how to implement a specification pattern without bleeding L2S concerns up into the ...
4
votes
4answers
110 views
Linq: how to use specifications against associated objects
I'm using specifications in this kind of form:
public static Expression<Func<User, bool>> IsSuperhero
{
get
{
return x => x.CanFly && x.CanShootLasersFromEyes;
}
}
...
4
votes
3answers
286 views
Specification pattern vs Extension method?
I am trying to grasp specification pattern and i get confused a little about it. I really couldn't found it helpful for my specific requirements. I want to know that what is problem if i prefer ...
4
votes
3answers
306 views
Is Specification Pattern Pointless?
I'm just wondering if Specification pattern is pointless, given following example:
Say you want to check if a Customer has enough balance in his/her account, you would create a specification ...
4
votes
2answers
347 views
Using eager loading with specification pattern
I've implemented the specification pattern with Linq as outlined here https://www.packtpub.com/article/nhibernate-3-using-linq-specifications-data-access-layer
I now want to add the ability to eager ...
4
votes
2answers
331 views
Comparison of Specification Pattern, Func<T,bool> Predicates and Pipes & Filters
I'm doing some R&D work, and as such am exploring design patterns. I have recently been reading up on the Specification pattern and was referred to this great article.
I was intrigued by the ...
4
votes
3answers
1k views
Is the Specification Pattern obsolete when you can use Dynamic LINQ?
Wikipedia states that the Specification Pattern is where business logic can be recombined by chaining the business logic together using boolean logic. With respect to selecting filtering objects from ...
3
votes
1answer
181 views
good way to implement NotSpecification: isSpecialCaseOf?
I'm implementing the specification pattern. The NotSpecification seems simple at first:
NotSpecification.IsSpecialCaseOf(otherSpecification)
return ...
2
votes
1answer
63 views
Linq: query syntax where operator does not understand predicates of type Expression
I have defined a specification as an object of type Expression<Func<User, bool>> like this:
public static Expression<Func<User, bool>> IsSystemUser
{
get
{
return user ...
2
votes
1answer
76 views
Combining C# code and database code in a Specification
Sometimes you need to define some business rules and the Specification pattern is a useful tool. For example:
public class CanBorrowBooksSpec : ISpecification<Customer>
{
public bool ...
2
votes
2answers
111 views
Entity Framework - Opinion on need of Business layer
At the moment my website has a repository pattern with the specification pattern in it. I can get data from within my .aspx page with just a few lines of code, example:
private IRepository ...
2
votes
1answer
114 views
mvvm repository filtering
I have some master-detail classes based in large part on Josh Smith's msdn article. Its great code, especially for an example, but leaves me wondering how best to handle situations where you want some ...
2
votes
1answer
302 views
Adding paging and filtering to typical Linq Specification pattern?
I have an ASP.NET MVC2 app that has heavy use of grids. I'd like to see if there is a way to add efficient paging and filtering to the typical Specification pattern.
Basically, the call that starts ...
2
votes
1answer
122 views
Trouble Creating Specification Across Entities With NLinq
I am using the Specification pattern, and have a working implementation (taken from the WhoCanHelpMe Codeplex project) for getting data via NLinq, generic repositories and all that goodness.
The root ...
2
votes
2answers
265 views
Specification pattern - creating compound specifications using lambdas (C#)
If I have a specification defined as an Expression as below:
public Expression<Func<Foo, bool>> IsSuperhuman =
x => x.CanFly && x.HasXRayVision;
And I want to define ...
2
votes
1answer
72 views
Need Func to supply to Where() method of both IEnumerable and IQueryable
I have a Func defined as follows:
Func<Foo, bool> IsSuperhero = x => x.WearsUnderpantsOutsideTrousers;
I can query IEnumerables like this:
IEnumerable<Foo> foos = GetAllMyFoos();
...
2
votes
1answer
298 views
Specification Pattern and Boolean Operator Precedence
In our project, we have implemented the Specification Pattern with boolean operators (see DDD p 274), like so:
public abstract class Rule {
public Rule and(Rule rule) {
return new ...
2
votes
2answers
1k views
Repository and Specification pattern
I'm currently setting up a new project, and I have run into a few things, where I need a little input.
This is what i'm considering:
I would like a generic repository
I don't want to return ...
2
votes
1answer
1k views
Specification Pattern for Querying against DataBase using NHibernate
How Do You Implement Specification Pattern for querying database using NHibernate?(without LINQ to NHibernate).I read a lot about Specification Pattern but most of them was about Validation and ...
2
votes
2answers
476 views
Implementing a Factory that uses Specifications to determine which type of object to create
This is mainly a thought experiment. So this all is sample code. My goal was to use the specification pattern to eliminate giant blocks of conditional code inside a factory. So with this sample I have ...
1
vote
2answers
69 views
In which layer should Specification Pattern objects be “new'ed up”?
So, I've looked at some posts about the Specification Pattern here, and haven't found an answer to this one yet.
My question is, in an n-layered architecture, where exactly should me Specifications ...
1
vote
0answers
207 views
Dynamic Expression API: I can do a predicate, how to code an OrderBy Specification?
I figured out how to do a predicate from a string supplied by a client based on Dynamic Linq (this is wrapped in a Specification object):
return ...
1
vote
2answers
85 views
How to create a collection of Expression<Func<T, TRelated>>?
I have a repository with the following method:
IEnumerable<T> FindAll<TRelated>(Specification<T> specification,
Expression<Func<T, ...
1
vote
2answers
138 views
How to implement isGeneralizationOf with the composite specification pattern?
I am trying to implement the composite specification pattern, as per the Specifications Document by Fowler and Evans.
At first impression, I thought the implementation of isGeneralizationOf would be ...
1
vote
3answers
452 views
How to adapt the Specification pattern to evaluate a combination of objects?
I know that the Specification pattern describes how to use a hierarchy of classes implementing ISpecification<T> to evaluate if a candidate object of type T matches a certain specification (= ...
1
vote
0answers
364 views
PHP specification pattern that allows transformation to sql
I'm trying to find out what the best way would be to have a specification pattern in PHP where the specifications could (optionally) by transformed to PHP.
I am exploring some new directions and am ...
1
vote
2answers
521 views
Does using the Specification Pattern truly reduce complexity in your code?
From my reading, it appears that the Specification Pattern can greatly reduce the reduce the number of methods needed to filter data. What benefits have you seen using the Specification Pattern? ...
0
votes
1answer
121 views
LINQ to Entities does not recognize the method
I'm getting the following error when trying to do a linq query:
LINQ to Entities does not recognize the method 'Boolean
IsCharityMatching(System.String, System.String)' method, and this
method ...
0
votes
0answers
197 views
Difficulty joining collections using a repository pattern with EF4
I'm having trouble getting the design behind this correct. I'm using a repository pattern to manage my datalayer. In one of my controllers (MVC3) i am constructing a LINQ query that needs to perform a ...
0
votes
1answer
62 views
Need help understanding The Specification Pattern - Inheritances
I believe that this is more of an inheritency question, but since I am trying to grasp it better by implementing a pattern that uses it, I thought I would ask my question related to get a better ...
0
votes
1answer
185 views
Using the speicifcation pattern as a validation layer?
I have only seen the specification pattern used to retrieve data, but not to validate it. A colleague suggested I can use the specification pattern to “validate” an object so it does not become ...
0
votes
0answers
73 views
Persisting specifications
I'm building a system where a user can subsribe for items and get periodically notifications for new items. Users should define what items they want by filtering on certain properties.
I'm using the ...
0
votes
1answer
236 views
Specification Pattern using SQL without an ORM, with the repository pattern
I have been looking into the specification pattern that is briefly described in martin fowler's patterns of enterprise architecture under the repository pattern section, as well as several examples on ...
0
votes
1answer
87 views
Specification Pattern in a seperate Project?
I'm planning to use "Specification pattern" to validate my domain objects in my solution.
Where is the "correct" place to put the "specification" classes in my solution? Should I create a dedicated ...
0
votes
1answer
228 views
Entity Framework 4 and Linq to Entities specifications: How to code it?
I threw down this code because it worked, but I really need to refactor to something acceptable. It accepts a set of query objects (strings that look like productid = 3) then adds them to my query. ...
0
votes
1answer
54 views
What utilities are useful when designing software specifications?
I was wondering if you know of any utilities for writing software specifications? Ideally a utility that allows one to define features, expectations, and relationships between various system ...
0
votes
2answers
1k views
Using the Specification Pattern
Like any design pattern the Specification Pattern is a great concept but susceptible to overuse by an eager architect/developer.
I am about to commence development on a new application (.NET & ...
0
votes
3answers
624 views
Specification Pattern vs Specific Hibernate Query
My question is when to use a specification pattern, and when to use specific SQL query.
I understood that specific pattern need to collect whole collection and post filter using concrete ...
-1
votes
2answers
194 views
Building a forms system using DDD
i'm building a form managment system, thats is, the system will contain many forms, will save them, and perform logic on them, I want to do it using the DDD approach.
I want to support easy form ...