Ejemplo n.º 1
0
 /// <summary>Compile query to filter the table by index, where query has three parameter.</summary>
 public static SearchQuery <tRow> filter <tRow, tArg1, tArg2, tArg3>(this SessionPool pool, Expression <Func <tRow, tArg1, tArg2, tArg3, bool> > exp) where tRow : new()
 {
     return(FilterQuery.query(pool.serializerForType <tRow>(), exp));
 }
Ejemplo n.º 2
0
 /// <summary>Compile query to filter the table by index, where query has three parameter.</summary>
 public static SearchQuery <tRow> filter <tRow, tArg1, tArg2, tArg3>(iTypeSerializer ser, Expression <Func <tRow, tArg1, tArg2, tArg3, bool> > exp) where tRow : new()
 {
     return(FilterQuery.query(ser, exp));
 }