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