Exemplo n.º 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);
 }
Exemplo n.º 3
0
 public IndicesQueryDescriptor <T> NoMatchQuery(NoMatchShortcut shortcut) =>
 Assign(a => a.NoMatchQuery = new NoMatchQueryContainer {
     Shortcut = shortcut
 });