Flowdock
method

predicate_builder

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: TableMetadata
predicate_builder() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/table_metadata.rb, line 66
    def predicate_builder
      if klass
        predicate_builder = klass.predicate_builder.dup
        predicate_builder.instance_variable_set(:@table, self)
        predicate_builder
      else
        PredicateBuilder.new(self)
      end
    end
Register or log in to add new notes.