Best way to fetch data from localized database
问题 I created table structure to make statuses localized in database: Status {StatusId, Value} -- Value in this table is status value in default language StatusTranslation {StatusId, Language, TrasnlationValue} -- StatusId and Language are combined key But I am having trouble to make this work in entity framework. When default languege it is easy Status.ToList() but when I need translation I pass to the get method de-CH but I can't return translated Status. What is the best way to map this using