module Sequel::Plugins::TacticalEagerLoading::DatasetMethods

def post_load(objects)

with the current dataset and array of all objects.
If there is an active identity map, set the reteived_with attribute for the object
def post_load(objects)
  super
  objects.each do |o|
    next unless o.is_a?(Sequel::Model)
    o.retrieved_by = self
    o.retrieved_with = objects
  end
end