public string SqlText(SqlIdentifierCollection identifiers) { var Res = new StringBuilder(); foreach (var tblName in identifiers) { if (Res.Length > 0) { Res.Append(", "); } Res.Append(SqlText(tblName)); } return(Res.ToString()); }
public Delete(SqlIdentifierCollection tables, Where whereClause) : this(tables) { this.WhereClause = whereClause; }
public Delete(SqlIdentifierCollection tables) : this() { this.Tables = tables; }
public Query(SqlIdentifierCollection tables) : this() { this.Tables = tables; }
public Statement(SqlIdentifierCollection tables) : this() { this.Tables = tables; }
public Insert(SqlIdentifierCollection tables) : this() { this.Tables = tables; }
public Select(SqlIdentifierCollection tables, bool forUpdate) : base(tables) { this.ForUpdate = forUpdate; }
public Select(SqlIdentifierCollection tables) : base(tables) { }