コード例 #1
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);
 }