Hi,
Let's say I have 2 entities in my data layer (Country and Language) that have to be localized depending the user language.
The normal option would be to just create a DB table with the translations and add a parameter to every query with the user language. Ok, no problem, but i'm looking for alternatives here.
Would be a better alternative to store the translations in RESX files and just add a property to my objects to get the translated name? Where should I put this resx files? in my Data project? A separete project? Any other alternative?