我试图掌握规范模式,我对它有点困惑.我真的觉得它对我的具体要求没有帮助.我想知道如果我更喜欢扩展方法来解决我的复杂问题,那会是什么问题?例如
public static class ProductExtensions { public static IQueryable<Product> InStocks(this IQueryable<Product> query) { return query.Where(p => p.InStock && !p.IsDeleted /*others goes here*/); } }
我发现用扩展方法包装我的长规格而不是使用spesification模式很有帮助.这有什么问题?