私はファントムウィキで提供されているsmipleコードをいじっています。私が試したのは次のとおりです。
import com.websudos.phantom.dsl._
case class Student(id: UUID, name: String)
class Students extends CassandraTable[Students, Student] {
object id extends UUIDColumn(this) with PartitionKey[UUID]
object name extends StringColumn(this)
def fromRow(row: Row): Student = {
Student(id(row), name(row))
}
}
object Students extends Students with Connector {
def getByName(name: String): Future[Option[Student]] = {
select.where(_.name eqs name).one()
}
}
しかし、私のIDEは言い続けCannot resolve symbol where
、コンパイラは言いますvalue where is not a member of com.websudos.phantom.builder.query.RootSelectBlock[Students,Student]
私は Scala2.11.6
と Phantomを使用し1.10.1
ています。すべてのヘルプが大歓迎です!