class OrmAdapter::Base
def get(id)
User.to_adapter.get(@user.to_key) == @user
This should comply with ActiveModel#to_key API, i.e.:
Get an instance by id of the model. Returns nil if a model is not found.
def get(id) raise NotSupportedError end
def get(id) raise NotSupportedError end