玩Scala Anorm“Magic [Country]()。使用(”国家“)”

时间:2011-10-03 12:05:25

标签: scala playframework anorm

在查看Play Scala Anorm的文档时,他们会显示使用以下语法指定备用表名称:

object Country extends Magic[Country]().using("Countries")

当我尝试使用它时,我得到:

Error raised is : ';' expected but '.' found.

这是正确的Scala语法是什么?

1 个答案:

答案 0 :(得分:2)

示例中有错误。你可以做到

val Country = new Magic[Country]().using("Countries")

但你肯定不能用对象声明做到这一点 你可以使用Magic的另一个构造函数

object Country extends Magic[Country](Some("Countries"))

(见object User extends Magic[User]().using("users") can not compiled