module Poro::Modelify::FindMethods::ClassMethods
The model find class methods.
Public Instance Methods
data_store_find(first_or_all, *args, &block)
click to toggle source
Calls data_store_find
on the Context
. See Poro::Context::FindMethods
for details.
# File lib/poro/modelify.rb, line 92 def data_store_find(first_or_all, *args, &block) return context.data_store_find(first_or_all, *args, &block) end
find(arg, opts={})
click to toggle source
Calls find on the Context
. See Poro::Context::FindMethods
for details.
# File lib/poro/modelify.rb, line 87 def find(arg, opts={}) return context.find(arg, opts) end