withColumn method
Fluent method to add a selected column
Implementation
SelectStatementBuilder withColumn(String columnName, {String? tableName}) {
selectColumn(columnName, tableName: tableName);
return this;
}
Fluent method to add a selected column
SelectStatementBuilder withColumn(String columnName, {String? tableName}) {
selectColumn(columnName, tableName: tableName);
return this;
}