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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
specifics: http://docs.datastax.com/en/cql/3.1/cql/cql_reference/select_r.html?scroll=reference_ds_d35_v2q_xj__selectIN
ideas:
case class PredefinedIn[T](l: List[T]) case class MyTable(str: String) case class MyQuery(str: PredefinedIn[String]) ss.select("mytable", MyQuery(PredefinedIn(List("a", "b", "c"))))
1a) implicit conversion for magical convenience? easier to use, but can people figure out what's happening?
case class MyQuery(str: PredefinedIn[String]) implicit def normal2Predefined[T](l: List[T]): PredefinedIn[T] = PredefinedIn[T](l) ss.select("mytable", MyQuery(List("a", "b", "c"))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
specifics: http://docs.datastax.com/en/cql/3.1/cql/cql_reference/select_r.html?scroll=reference_ds_d35_v2q_xj__selectIN
ideas:
1a) implicit conversion for magical convenience? easier to use, but can people figure out what's happening?
The text was updated successfully, but these errors were encountered: