SpecificationPattern icon indicating copy to clipboard operation
SpecificationPattern copied to clipboard

Implementation of the Specification Pattern in C#

Results 2 SpecificationPattern issues
Sort by recently updated
recently updated
newest added

In my specification I have some expression: ``` public class OrderModelSapNumber : WhereSpecification { private readonly string Sap; public OrderModelSapNumber(string sap) { Sap = sap; } public override Expression ToExpression()...

First of all, I would like to thank you for the very good articles on your site enterprisecraftmanship. These articles helped me very much understanding and implementing DDD. Thanks for...