示例#1
0
 internal And(Specification <T> lhs, Specification <T> rhs)
 {
     Predicate = rhs.Compose(lhs, Expression.And).Predicate;
 }
示例#2
0
文件: Or.cs 项目: zamil2200/Bifrost
 internal Or(Specification <T> lhs, Specification <T> rhs)
 {
     Predicate = lhs.Compose(rhs, Expression.Or).Predicate;
 }