Esempio n. 1
0
 public void WhereNot(PropertyPointcut pointcut)
 {
     FilterNot(pointcut);
 }
Esempio n. 2
0
 public void WhereHasProperty(PropertyPointcut property)
 {
     Where(t => property.Match(t) && t.Properties.Any(property.Match));
 }