is_virtual support
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core / View.pm
CommitLineData
1d521afd 1package DBIx::Class::Core::View;
2
3use strict;
4use warnings;
5no warnings 'qw';
6
7use base qw/DBIx::Class/;
8
9__PACKAGE__->load_components(qw/
10 Relationship
11 InflateColumn
12 PK::Auto
13 PK
14 Row
15 ResultSourceProxy::View/);
16
171;
18
19=head1 NAME
20
21DBIx::Class::Core - Core set of DBIx::Class modules
22
23=head1 SYNOPSIS
24
25 # In your result classes
26 __PACKAGE__->load_components(qw/Core::View/);
27
28=head1 DESCRIPTION
29
30This class just inherits from the various modules that make up the
31L<DBIx::Class> core features. You almost certainly want these.
32
33The core modules currently are:
34
35=over 4
36
37=item L<DBIx::Class::Serialize::Storable>
38
39=item L<DBIx::Class::InflateColumn>
40
41=item L<DBIx::Class::Relationship>
42
43=item L<DBIx::Class::PK::Auto>
44
45=item L<DBIx::Class::PK>
46
47=item L<DBIx::Class::Row>
48
49=item L<DBIx::Class::ResultSourceProxy::View>
50
51=back
52
53=head1 AUTHORS
54
55Matt S. Trout <mst@shadowcatsystems.co.uk>
56
57With Contributions from:
58
59Guillermo Roditi E<lt>groditi@cpan.orgE<gt>
60
61=head1 LICENSE
62
63You may distribute this code under the same terms as Perl itself.
64
65=cut