How can I do a case-insensitive search with Rose::DB::Object
?
Here is the form of a Rose::DB::Object
search:
my $my_matches = $_my_table_class_mgr->get_objects(
query => [
my_field => $my_value,
],
);
Is there something I can add to the "query" parameters, perhaps? But, I don't see anything that addresses this in here (in the Rose::DB::Object::QueryBuilder
documentation).
What am I missing? And where is what I am missing documented?
Thank you!