Hi, I have to keep some localized data; instead of keeping one localization table for each project table, like local_products, local_categories and so on, I'd like to just have one local_strings table, with fields string_id, locale_name, text, and to replace strings with ids in all other tables, with queries like this:
select products.id, ls1.text as name, ls2.text as description from products, local_strings ls1, local_strings ls2 where ls1.string_id = products.name_id AND ls2.string_id = products.description_id and ls1.locale = 'en' and ls2.locale = 'en'; Is this feasible with Castle.ActiveRecord (and, if so, how)? Thanks -- You received this message because you are subscribed to the Google Groups "Castle Project Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=.
