Hello
I'm designing entites in different languages. Each of those entites has one Text field i need to store in different languages. So i did a DB-Design like this one:
tbl_Entity1
EntityId
SomeOtherFields...
Then a localistation Table:
tbl_localisation
Id
TextField
EntityType
EntityId
Language
Now i can join on EntityType and EntityId to get a text of an entity in a specific language.
My problem is how to design this, for the best use with llblgen. If i use a stored procedure, that would be easy on the DB side, but i have to wrap all entites after i got them from the DB throu the stored procedure.
I can use a view, but this is very complex (or even not possible?!) on the DB side.
What do you think about this?
Thanks and best regards