You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 17, 2018. It is now read-only.
class Car
include DataMapper::Resource
has n, :wheels
property :id, Serial
property :deleted, ParanoidBoolean, :default => false, :lazy => false
end
If :lazy is set to true, Wheel.car will return nil even if a record exists (it even queries the DB successfully).
See https://gist.github.com/1511964 for a fuller use-case
The text was updated successfully, but these errors were encountered: