Esempio n. 1
0
        public Having <T> Having(Predicate searchSearchCondition)
        {
            var clause = new Having <T>(this.Statement, searchSearchCondition);

            this.NextFragment = clause;
            return(clause);
        }
Esempio n. 2
0
 public void Having <T>(SqlFragment parent, Having <T> having) where T : IStatement
 {
     this.Script.LineAppendLine(TSqlKeyword.HAVING);
     this.Script.AppendFragment(having.SearchCondition, having, this);
 }