We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, How can i use doubleParam in CustomFunction syntax? Example: ` val latUser = -23.587420 val lngUser = -46.679119
val distanceBetween = CustomFunction("fn_GetDistanceBetween", DoubleColumnType(), TblFoo.lastLocationLat, TblFoo.lastLocationLng, doubleParam(latUser), doubleParam(lngUser)) ` Thanks.
The text was updated successfully, but these errors were encountered:
Just missing fun doubleParam(value: Double): Expression<Double> = QueryParameter(value, DoubleColumnType()) at file Op.kt
fun doubleParam(value: Double): Expression<Double> = QueryParameter(value, DoubleColumnType())
Sorry, something went wrong.
shortParam/shortLiteral, floatParam/floatLiteral, doubleParam/doubleL…
7077462
…iteral added #648
076efa1
No branches or pull requests
Hi,
How can i use doubleParam in CustomFunction syntax?
Example:
`
val latUser = -23.587420
val lngUser = -46.679119
val distanceBetween = CustomFunction("fn_GetDistanceBetween", DoubleColumnType(), TblFoo.lastLocationLat, TblFoo.lastLocationLng, doubleParam(latUser), doubleParam(lngUser))
`
Thanks.
The text was updated successfully, but these errors were encountered: