karupanerura / Aniki

The ORM as our great brother.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

selectのインターフェースの再考

karupanerura opened this issue · comments

  1. 常にlist contextで返す(今のまま)
  2. scalar contextではTeng#single相当にするなどcontextを見る
  3. オブジェクトにくるんで返す

どれがいいか。

オブジェクトでくるんで返すようにしようと思う。

my @rows = $aniki->select(foo => { id => [1..10] })->all;
my $row = $aniki->select(foo => { id => 1 })->first;

👍