public Sql Append(Sql sql) { if (_sqlFinal != null) _sqlFinal = null; if (_rhs != null) { _rhs.Append(sql); } else if (_sql != null) { _rhs = sql; } else { _sql = sql._sql; _args = sql._args; _rhs = sql._rhs; } return this; }
private void Build(StringBuilder sb, List<object> args, Sql lhs) { if (!String.IsNullOrEmpty(_sql)) { // Add SQL to the string if (sb.Length > 0) { sb.Append("\n"); } var sql = ParameterHelper.ProcessParams(_sql, _args, args); if (Is(lhs, "WHERE ") && Is(this, "WHERE ")) sql = "AND " + sql.Substring(6); if (Is(lhs, "ORDER BY ") && Is(this, "ORDER BY ")) sql = ", " + sql.Substring(9); sb.Append(sql); } // Now do rhs if (_rhs != null) _rhs.Build(sb, args, this); }
public SqlJoinClause(Sql sql) { _sql = sql; }
static bool Is(Sql sql, string sqltype) { return sql != null && sql._sql != null && sql._sql.StartsWith(sqltype, StringComparison.InvariantCultureIgnoreCase); }