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