File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,16 @@ public RangeQueryDescriptor<T> FromExclusive()
6262 this . _FromInclusive = false ;
6363 return this ;
6464 }
65+
66+ /// <summary>
67+ /// Boosts the range query by the specified boost factor
68+ /// </summary>
69+ /// <param name="boost">Boost factor</param>
70+ public RangeQueryDescriptor < T > Boost ( double boost )
71+ {
72+ this . _Boost = boost ;
73+ return this ;
74+ }
6575
6676
6777 #region int
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public class Connection : IConnection
1515 {
1616 const int BUFFER_SIZE = 1024 ;
1717
18- private IConnectionSettings _ConnectionSettings { get ; set ; }
18+ protected IConnectionSettings _ConnectionSettings { get ; set ; }
1919 private Semaphore _ResourceLock ;
2020 private readonly bool _enableTrace ;
2121
You can’t perform that action at this time.
0 commit comments