Exemple #1
0
 public QueryCondition In(params object[] values)
 {
     var qc = new QueryCondition();
     Conditions = qc;
     Conditions.Parent = this;
     qc.TableAlias = this;
     return qc.In(values);
 }