From: J. Shirley Date: Mon, 12 Mar 2007 21:27:08 +0000 (+0000) Subject: Updating Manual/Intro to reflect better -in => [] usage, adding myself to contributor... X-Git-Tag: v0.08010~176 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1aec4bac2821b09c1e2d669585416027a9e613ea;p=dbsrgits%2FDBIx-Class.git Updating Manual/Intro to reflect better -in => [] usage, adding myself to contributors (mst put me in dbic-devel, too) --- diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index bc103a3..6160f08 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -206,6 +206,8 @@ jesper: Jesper Krogh jguenther: Justin Guenther +jshirley: J. Shirley + konobi: Scott McWhirter LTJake: Brian Cassidy diff --git a/lib/DBIx/Class/Manual/Intro.pod b/lib/DBIx/Class/Manual/Intro.pod index 43e60cf..f5bf73d 100644 --- a/lib/DBIx/Class/Manual/Intro.pod +++ b/lib/DBIx/Class/Manual/Intro.pod @@ -356,7 +356,7 @@ L construct to C: my $rs = $schema->resultset('Album')->search({ artist => { '!=', 'Janis Joplin' }, year => { '<' => 1980 }, - albumid => [ 1, 14, 15, 65, 43 ] + albumid => { '-in' => [ 1, 14, 15, 65, 43 ] } }); This results in something like the following C clause: