I want select easily multiple row with a specific hstore key. Here "fr" key. You can see the follow structure:
+----+----------------+-------------------------+
| id | name_i18n | description_i18n |
+----+----------------+-------------------------+
| 1 | "fr"=> "nom 1" | "fr"=> "Description 1" |
+----+----------------+-------------------------+
| 2 | "fr"=> "nom 2" | "fr"=> "Description 2" |
+----+----------------+-------------------------+
| 3 | "fr"=> "nom 3" | "fr"=> "Description 3" |
+----+----------------+-------------------------+
I want to obtain this result with Pomm Project. For that I create a extendable ModelI18n for that. You can see here.
It is a good practice to override the default projection? Do you have a other idea ?