See also: L<DBIx::Class::ResultSet/METHODS>
-=head2 Record
-
-See Result.
-
-=head2 Row
-
-See Result.
-
=head2 Result
Result objects contain your actual data. They are returned from
See also: L<DBIx::Class::Manual::ResultClass>
+=head2 Row
+
+See Result.
+
=head2 Object
See Result.
-=head2 join
+=head2 Record
-See Join.
+See Result.
=head2 prefetch
my $fredsbooks = $schema->resultset('Author')->find({ Name => 'Fred' })->books;
Each relationship sets up an accessor method on the
-L<Row|DBIx::Class::Manual::Glossary/"Row"> objects that represent the items
+L<Result|DBIx::Class::Manual::Glossary/"Result"> objects that represent the items
of your table. From L<ResultSet|DBIx::Class::Manual::Glossary/"ResultSet"> objects,
the relationships can be searched using the "search_related" method.
In list context, each returns a list of Result objects for the related class,