예제 #1
0
 public TraverseQueryTerm(string property, bool isInverse, TraversalOptions options)
 {
     Property = property;
     Options = options;
     IsInverse = isInverse;
 }
예제 #2
0
 public Query TraverseInverse(string property, TraversalOptions traversaloptions = null)
 {
     _terms.Add(new TraverseQueryTerm(property, true, traversaloptions));
     return this;
 }