示例#1
0
 public IndicesQueryDescriptor <T> NoMatchQuery(NoMatchShortcut shortcut)
 {
     ((IIndicesQuery)this).NoMatchQuery = new NoMatchQueryContainer {
         Shortcut = shortcut
     };
     return(this);
 }
 public IndicesFilterDescriptor <T> NoMatchFilter(NoMatchShortcut shortcut)
 {
     ((IIndicesFilter)this).NoMatchFilter = new NoMatchFilterContainer {
         Shortcut = shortcut
     };
     return(this);
 }
示例#3
0
 public IndicesQueryDescriptor <T> NoMatchQuery(NoMatchShortcut shortcut) =>
 Assign(a => a.NoMatchQuery = new NoMatchQueryContainer {
     Shortcut = shortcut
 });