If my domain object should contain string properties in 2 languages, should I create 2 separate properties or create a new type BiLingualString?

For example in plant classification application, the plant domain object can contain Plant.LatName and Plant.EngName.

The number of bi-lingual properties for the whole domain is not big, about 6-8, I need only to support two languages, information should be presented to UI in both languages at the same time. (so this is not locallization). The requirements will not change during development.

It may look like an easy question, but this decision will have impact on validation, persistance, object cloning and many other things.

Negative sides I can think of using new dualString type:

  • Validation: If i'm going to use DataAnattations, Enterprise Library validation block, Flued validation this will require more work, object graph validation is harder than simple property validation.
  • Persistance: iether NH or EF will require more work with complex properties.
  • OOP: more complex object initialization, I will have to initialize this new Type in constructor before I can use it.
  • Architecture: converting objects for passing them between layers is harder, auto mapping tools will require more hand work.
link|improve this question

2  
Are you absolutely sure you won't need to add third language in the future? – svick Jun 12 '11 at 15:31
@svick: I'm sure. – Alex Burtsev Jun 12 '11 at 15:35
feedback

5 Answers

up vote 3 down vote accepted

If you 100% sure that it will always be only Latin and English I would just stick with simplest solution - 2 string properties. It also more flexible in UI then having BiLingualString. And you won't have to deal with Complex types when persisting.

link|improve this answer
feedback

While reading your question I was thinking about why not localization all the time but when I read information should be presented to UI in both languages at the same time. I think it makes sense to use properties.

In this case I would go for a class with one string for each languages as you have mentioned BiLingualString

public class Names
{
    public string EngName {get;set;}
    public string LatName {get;set;}
}

Then I would use this class in my main Plant Class like this

public class Plant: Names
{

}
link|improve this answer
@Haris: I want to keep my domain objects POCO, why inheritance instead of containment? Plant{public Names Name;}. – Alex Burtsev Jun 12 '11 at 15:37
Well, IMHO doesn't make much different in this particular case.. so you can do whatever you feel comfortable with. – Haris Hasan Jun 12 '11 at 15:41
1  
@Haris Hasan what is advantage of having separate class instead of 2 plain string properties? – Andrej Slivko Jun 12 '11 at 15:41
@qrow I think this structure will incorporate changes more easily if in future some change in requirement comes like adding more languages or to display only one language at a time(through localization) – Haris Hasan Jun 12 '11 at 15:50
@Haris Hasan I think author clearly pointed out that it will be only 2 languages. And he mentioned Latin, so his domain is probably about medicine (or another field where they use native + latin language). So again, what is advantage of having class for this if we agree that there will be only 2 languages? – Andrej Slivko Jun 12 '11 at 15:55
show 7 more comments
feedback

To help decide, I suggest considering how consistent this behavior will be at all layers. If you expose these as two separate properties on the business object, I would also expect to see it stored as two separate columns in a database record, for example, rather than two translations for the same property stored in a separate table. It does seem odd to store translations this way, but your justifications sound reasonable, and 6 properties is not un-managable. But be sure that you don't intend to add more languages in the future.

If you expect this system to by somewhat dynamic in that you may need to add another language at some point, it would seem to make more sense to me to implement this differently so that you don't have to alter the schema when a new language needs to be supported.

I guess the thing to balance is this: consider the likelihood of having to adjust the languages or properties to accommodate a new language against the advantage (simplicity) you gain by exposing these directly as separate properties rather than having to load translations as a separate level.

link|improve this answer
feedback

I would create MultiLingualString class. Maybe you will need a third language in the future. The class can look like:

public MultiLingualString 
{
    private Dictionary<string,string> content = new Dictionary<string,string>();

    public AddString(string language, string value)
    {
         content.Add(language,string);
    }

    public string this [string language]
    {
        get
        {
             return content[language];
        }
    }

    public string override ToString()
    {
        return content["en"];
    }

    public string ToString(string language)
    {
        return content[language];
    }
}

Now you can reach for string like this:

MultiLingualString s = new MultiLingualString();
s.Add("en","office");
s.Add("fr","Bureau");
// now reach for it
Console.WriteLine(s["fr"]);
Console.WriteLine(s.ToString("fr"));
// or use as normal string thanks to ToString method
Console.WriteLine(s); // english version would be shown

Of course you should add error handling to that solution.

link|improve this answer
did you thought about how to persist this? Or how to show it in UI if for example you would want english and latin names in different UI place? Why overcomplicating? – Andrej Slivko Jun 12 '11 at 15:38
Overcomplicated? Yes. But still nice solution imho :) However what if third or fourth language appears. You never now - but if you know then two props are just fine, but answering is such way is not ;) – eye Jun 12 '11 at 15:48
if your definition of "nice solution" is over-complicated, not suitable for real life code - then yes, your solution is nice :) – Andrej Slivko Jun 12 '11 at 16:51
feedback

You may consider localized resources.

link|improve this answer
@downvoter please care to comment – oleksii Jun 12 '11 at 15:50
read the question, this is not about localization. – Alex Burtsev Jun 12 '11 at 16:05
@Alex, well it depends - you need to support 2 languages - I argue that's a localization question, but I guess this is your question - you know better. I will not, however, downvote, because you physically can do such thing via resources. It may not be suitable in your scenario. – oleksii Jun 12 '11 at 17:19
The localized data is entered by user (user can create new domain objects), resources provide static solution, so no it's impossible to use static resources. – Alex Burtsev Jun 12 '11 at 17:24
@Alex, sorry, I never noticed you had mention the compile time is not suitable for you – oleksii Jun 12 '11 at 17:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.