We are using complex types to manage our translatable fields like this:

[ComplexType]
public class Translated
{
    [Required]
    public string NL { get; set; }

    [Required]
    public string EN { get; set; }

    [ScaffoldColumn(false)]
    public string TranslatedText
    {
        get
        {
           return Util.Translate(NL, EN); 
        }
    }
}

We require the fields to be present. But in some cases the whole Translated field is optional as in:

public class Question
{
    ...

    [Optional(ErrorMessage="Foo")]
    public Translated Description { get; set; }

    ...
}

However, it seems that the Optional attribute gets calculated, and when it returns false nothing is done with the result.

class OptionalAttribute : ValidationAttribute 
{
    public override bool IsValid(object value)
    {
        return false;
    }
}

When I put the optional attribute on a non-complex type it works as expected, the error message will always be Foo.

The ultimate goal is to allow the Description to be empty in both cases, but when one of the fields is filled the errors should of course propagate.

Stopping the validation recursion would cause the field to be optional, but it would also prevent the validation of the fields in case they are filled in.

Any ideas on how to accomplish this?

link|improve this question

Btw. EF CTP5 is old version. Current verwion is called EF 4.1 RTW (final version). – Ladislav Mrnka Apr 12 '11 at 18:21
I will test this situation with the new version and report back. – Alessandro Vermeulen Apr 13 '11 at 18:09
The situation I sketched in my original question still holds. I guess I could override the Validate method of our entities to check for each whether it is optional or not, and if that is the case only propagate it's validation result in the case it is not empty. Any suggestions on how best to implement this? I'm also apprehensive of overwriting MVC/Framework supplied code with our own. – Alessandro Vermeulen Apr 16 '11 at 19:19
feedback

2 Answers

up vote 4 down vote accepted
+25

Using the data annotation [Required] on your string properties will create non nullable fields in the database. From your description it seems that sometimes you'll want both of those values to be null.

I would suggest implementing your own validation defining what makes those fields optional.

[ComplexType]
public class Translated : IValidatableObject
{
    public string NL { get; set; }

    public string EN { get; set; }

    [NotMapped]
    public string TranslatedText
    {
        get
        {
            return Util.Translate(NL, EN);
        }
    }

    public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
    {
        if (!string.IsNullOrEmpty(NL) && string.IsNullOrEmpty(EN))
            yield return new ValidationResult("EN is required if NL is entered.");

        if (!string.IsNullOrEmpty(EN) && string.IsNullOrEmpty(NL))
            yield return new ValidationResult("NL is required if EN is entered.");
    }
}
link|improve this answer
The point here is that whether the field is required is dependent on the context where this complex type is used. I could of course create multiple complex types like Translated, TranslatedOptional. But that seems awkward to me, and I don't know whether it will work at all. – Alessandro Vermeulen Apr 26 '11 at 7:18
@Alessandro: Upfront, I know nothing about ADO.NET... but this custom Validate method looks like it's getting "pretty warm" to me. The only problem is that Translated has to be (optional or mandatory), yes? Well that sounds a LOT like an attribute of Translated to me... public bool Mandatory { get; set; }... or am I just beeing dumb? and if so, why? – corlettk Apr 26 '11 at 9:12
Whether or not it is optional is indeed an attribute of Translated, but it is statically determined by the context where the Translated field is used. So it is a property but not an attribute. – Alessandro Vermeulen Apr 26 '11 at 12:11
feedback

This is what I'm doing now. It has the disadvantage that for each kind of Translated (Translated, TranslatedOptional, TranslatedMultiline and TranslatedMultilineOptional) you have seperate classes.

Another disadvantage is that I don't know how to add the validation results to the NL en EN fields themselves instead of to the Translated.

[ComplexType]
public class TranslatedMultiline : IValidatableObject
{   
    [DataType(DataType.MultilineText)]
    [Display(Name = "dutch", ResourceType = typeof(Caracal.Resources.GUI))]
    public string NL { get; set; }

    [DataType(DataType.MultilineText)]
    [Display(Name = "english", ResourceType = typeof(Caracal.Resources.GUI))]
    public string EN { get; set; }

    [ScaffoldColumn(false)]
    public string TranslatedText
    {
        get
        {
            return Util.Translate(NL, EN);
        }
    }

    public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
    {
        if (this is IOptional)
        {
            if (!string.IsNullOrEmpty(NL) && string.IsNullOrEmpty(EN))
                yield return new ValidationResult("EN is required if NL is entered.");
                // TODO: Translate

            if (!string.IsNullOrEmpty(EN) && string.IsNullOrEmpty(NL))
                yield return new ValidationResult("NL is required if EN is entered.");
                // TODO: Translate
        }
        else
        {
            if (string.IsNullOrEmpty(NL))
                yield return new ValidationResult("NL is required");

            if (string.IsNullOrEmpty(EN))
                yield return new ValidationResult("EN is required");

        }
    }
}

[ComplexType]
public class TranslatedMultilineOptional : TranslatedMultiline, IOptional { }

public interface IOptional {}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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