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