All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nbcp.myoql.db.sql.base.SqlOrderBy.kt Maven / Gradle / Ivy

The newest version!
package nbcp.myoql.db.sql.base

import java.io.Serializable


data class SqlOrderBy(var orderBy: SqlParameterData, var Asc: Boolean) : Serializable {
    fun toSingleSqlData(): SqlParameterData {
        if (orderBy.expression.isEmpty()) {
            return SqlParameterData()
        }
        return SqlParameterData(" ${this.orderBy.expression} ${if (this.Asc) "asc" else "desc"}", this.orderBy.values)
    }
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy