Hi mo,

Thanks for the advice.. but sadly it did not work :(

I will put a test case together to see if I can prove what is happening... I guess is should work as it is in the docs.

cheers,
-Ben



On 16/07/10 11:08, Moritz Onken wrote:
Am 16.07.2010 um 10:18 schrieb Benjamin Martin:

Hello everyone,

I have a ResultSet where I have used the 'resultset_attributes' to restrict 
which records get returned from search etc. ... ala the documentation:

  __PACKAGE__->resultset_attributes({ where =>  { deleted =>  undef } });

In one part of the system I would like to access these restricted records but I 
can't seem to get it to work!

  $schema->resultset('TableA')->search( {}, { where =>  undef } );
Try

$schema->resultset('TableA')->search( {}, { where =>  { deleted =>  { '!=' =>  
undef } } } );

which will result in a WHERE "deleted" IS NOT NULL;


cheers,
mo
_______________________________________________
List: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class
IRC: irc.perl.org#dbix-class
SVN: http://dev.catalyst.perl.org/repos/bast/DBIx-Class/
Searchable Archive: http://www.grokbase.com/group/[email protected]



_______________________________________________
List: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class
IRC: irc.perl.org#dbix-class
SVN: http://dev.catalyst.perl.org/repos/bast/DBIx-Class/
Searchable Archive: http://www.grokbase.com/group/[email protected]

Reply via email to