Update DocMap - include missing local Manual pages (PR#22)
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Manual / DocMap.pod
index 44215ba..15c7ee6 100644 (file)
@@ -14,6 +14,10 @@ DBIx::Class::Manual::DocMap - What documentation do we have?
 
 =item L<DBIx::Class::Manual::SQLHackers> - How to use DBIx::Class if you know SQL (external, available on CPAN)
 
+=item L<DBIx::Class::Manual::Joining> - Joining tables with DBIx::Class.
+
+=item L<DBIx::Class::Manual::Features> - A boatload of DBIx::Class features with links to respective documentation.
+
 =item L<DBIx::Class::Manual::Glossary> - What do all those terms mean?
 
 =item L<DBIx::Class::Manual::Cookbook> - Various short recipes on how to do things.
@@ -32,9 +36,16 @@ The first two list items are the most important.
 
 =item L<DBIx::Class::ResultSet/search> - Selecting and manipulating sets.
 
-=item L<DBIx::Class::$resultclass (normally based on DBIx::Class::Core)|DBIx::Class::Manual::ResultClass>
-- Representing a single result (row) from a DB query. The methods inherited from
-L<DBIx::Class::Row> and L<DBIx::Class::Relationship::Base> are used most often.
+The DSL (mini-language) for query composition is only partially explained there,
+see L<SQL::Abstract/WHERE CLAUSES> for the complete details.
+
+=item L<C<$schema>::Result::C<$resultclass>|DBIx::Class::Manual::ResultClass>
+- Classes representing a single result (row) from a DB query.
+
+Such classes normally subclass L<DBIx::Class::Core>, the methods inherited
+from L<DBIx::Class::Row|DBIx::Class::Row/METHODS> and
+L<DBIx::Class::Relationship::Base|DBIx::Class::Relationship::Base/METHODS>
+are used most often.
 
 =item L<DBIx::Class::ResultSetColumn> - Perform operations on a single column of a ResultSet.