Ejemplo n.º 1
0
 public QueryCondition Or(params QueryCondition[] querySelects)
 {
     var qc = new QueryCondition();
     Conditions = qc;
     Conditions.Parent = this;
     qc.TableAlias = this;
     return qc.Or(querySelects);
 }
Ejemplo n.º 2
0
 public QueryTable Query(QueryCondition conditions)
 {
     Conditions = conditions;
     Conditions.Parent = this;
     return this;
 }
Ejemplo n.º 3
0
 public QueryCondition Not(object value = null, bool asNull = false)
 {
     var qc = new QueryCondition();
     Conditions = qc;
     Conditions.Parent = this;
     qc.TableAlias = this;
     return qc.Not(value, asNull);
 }
Ejemplo n.º 4
0
 public QueryCondition Lte(object value)
 {
     var qc = new QueryCondition();
     Conditions = qc;
     Conditions.Parent = this;
     qc.TableAlias = this;
     return qc.Lte(value);
 }
Ejemplo n.º 5
0
 public QueryTable Join(QueryTable table, QueryCondition condition)
 {
     var jqt = Join(new JoinDescriptor(table, condition));
     jqt.Parent = this;
     return jqt;
 }
Ejemplo n.º 6
0
 public QueryCondition IsNull()
 {
     var qc = new QueryCondition();
     Conditions = qc;
     Conditions.Parent = this;
     qc.TableAlias = this;
     return qc.IsNull();
 }
Ejemplo n.º 7
0
 public QueryCondition In(params object[] values)
 {
     var qc = new QueryCondition();
     Conditions = qc;
     Conditions.Parent = this;
     qc.TableAlias = this;
     return qc.In(values);
 }