示例#1
0
 /// <summary>
 /// Describe the query to perform using the static Query class
 /// </summary>
 public SearchDescriptor <T> Query(BaseQuery query)
 {
     query.ThrowIfNull("query");
     if (query.IsConditionless)
     {
         return(this);
     }
     this._Query = query;
     return(this);
 }