Ejemplo n.º 1
0
        public ProximityTerm Proximity(string field, int proximity, params string[] words)
        {
            var term = new ProximityTerm(this, field, proximity, words);

            _term = term;
            return(term);
        }
Ejemplo n.º 2
0
        public Term OrProximity(string field, double proximity, params string[] words)
        {
            var prox = new ProximityTerm(Search, field, proximity, words);

            return(new BinaryTerm(Search, field, BinaryTerm.Op.Or, this, prox));
        }
Ejemplo n.º 3
0
 public Term OrProximity(string field, double proximity, params string[] words)
 {
     var prox = new ProximityTerm(Search, field, proximity, words);
     return new BinaryTerm(Search, field, BinaryTerm.Op.Or, this, prox);
 }
Ejemplo n.º 4
0
 public ProximityTerm Proximity(string field, int proximity, params string[] words)
 {
     var term = new ProximityTerm(this, field, proximity, words);
     _term = term;
     return term;
 }