模型:
class Country
include DataMapper::Resource
property :id, Serial
property :name, String
property :continent, String
end
我正在尝试通过 name 属性进行查询:
Country.find(:name => "value")
但它一直给我一个nil
. 这不应该是这种情况,因为我非常确定具有特定值的记录存在于数据库中。
模型:
class Country
include DataMapper::Resource
property :id, Serial
property :name, String
property :continent, String
end
我正在尝试通过 name 属性进行查询:
Country.find(:name => "value")
但它一直给我一个nil
. 这不应该是这种情况,因为我非常确定具有特定值的记录存在于数据库中。