次の関係を持つ 2 つの Ruby モデルがあります (datamapper を使用):
class Klass
expose :id, :kid
property :id, Serial
property :date, DateTime
has 1, :kid
class KID
expose :id, :klass
property :id, Serial
belongs_to :klass
Klass オブジェクトを取得しようとすると、エラーが発生します。
"error":"undefined method `klass_id' for #"
すべてのオブジェクトがデータベースで正常に作成されます。
これについて何か助けはありますか?