コード例 #1
0
ファイル: QueryTable.cs プロジェクト: kendarorg/ZakFramework
 public QueryCondition Lt(object value)
 {
     var qc = new QueryCondition();
     Conditions = qc;
     Conditions.Parent = this;
     qc.TableAlias = this;
     return qc.Lt(value);
 }