Rand Stats

The uploading author of cpan:GDONALD does not match the META author of github:rakuist.

ORM::ActiveRecord

cpan:GDONALD

ORM::ActiveRecord

ORM::ActiveRecord is an object-relational mapping module for Raku that mostly follows the Active Record Pattern.

Documentation

http://docs.rakuist.io/orm-activerecord

Install using zef

zef install --/test ORM::ActiveRecord

--/test is suggested because you probably don't have a test database setup.

Simple Example

my $user = User.create({fname => 'Greg'});
my $page = Page.create({:$user, name => 'Rakuist'});

say $user.pages.first.name;
Rakuist

say $page.user.fname;
Greg

my $alfred = User.create({fname => 'Fred'});
$page.update({user => $fred});

say $page.user.fname;
Fred

Please see the documentation for more examples.

Build Status

Build Status

License

ORM::ActiveRecord is released under the Artistic License 2.0

Features

TODO