コード例 #1
0
ファイル: QueryExecutor.cs プロジェクト: thoward/bsharptree
 public QueryExecutor Should(QueryExecutor clause)
 {
     Console.Out.WriteLine("should have clause");
     _results = _results.Should(clause.Documents());
     return this;
 }
コード例 #2
0
ファイル: QueryExecutor.cs プロジェクト: thoward/bsharptree
 public QueryExecutor MustNot(QueryExecutor clause)
 {
     Console.Out.WriteLine("must not have clause");
     _results = _results.MustNot(clause.Documents());
     return this;
 }