コード例 #1
0
ファイル: QueryTable.cs プロジェクト: kendarorg/ZakFramework
 public QueryCondition Or(params QueryCondition[] querySelects)
 {
     var qc = new QueryCondition();
     Conditions = qc;
     Conditions.Parent = this;
     qc.TableAlias = this;
     return qc.Or(querySelects);
 }
コード例 #2
0
ファイル: QueryTable.cs プロジェクト: kendarorg/ZakFramework
 public QueryTable Query(QueryCondition conditions)
 {
     Conditions = conditions;
     Conditions.Parent = this;
     return this;
 }
コード例 #3
0
ファイル: QueryTable.cs プロジェクト: kendarorg/ZakFramework
 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);
 }
コード例 #4
0
ファイル: QueryTable.cs プロジェクト: kendarorg/ZakFramework
 public QueryCondition Lte(object value)
 {
     var qc = new QueryCondition();
     Conditions = qc;
     Conditions.Parent = this;
     qc.TableAlias = this;
     return qc.Lte(value);
 }
コード例 #5
0
ファイル: QueryTable.cs プロジェクト: kendarorg/ZakFramework
 public QueryTable Join(QueryTable table, QueryCondition condition)
 {
     var jqt = Join(new JoinDescriptor(table, condition));
     jqt.Parent = this;
     return jqt;
 }
コード例 #6
0
ファイル: QueryTable.cs プロジェクト: kendarorg/ZakFramework
 public QueryCondition IsNull()
 {
     var qc = new QueryCondition();
     Conditions = qc;
     Conditions.Parent = this;
     qc.TableAlias = this;
     return qc.IsNull();
 }
コード例 #7
0
ファイル: QueryTable.cs プロジェクト: kendarorg/ZakFramework
 public QueryCondition In(params object[] values)
 {
     var qc = new QueryCondition();
     Conditions = qc;
     Conditions.Parent = this;
     qc.TableAlias = this;
     return qc.In(values);
 }