views:

51

answers:

3

So in my mvc project's Project.Repository I have

[MetadataType(typeof(FalalaMetadata))]
public partial class Falala
{
    public string Name { get; set; }

    public string Age { get; set; }

    internal sealed class FalalaMetadata
    {
        [Required(ErrorMessage="Falala requires name.")]
        public string Name { get; set; }

        [Required(ErrorMessage = "Falala requires age.")]
        public string Age { get; set; }
    }
}

I use Falala as a model in my Project.Web.AccountControllers, and use a method to get violations. Validating worked when I had

public class Falala
{
    [Required]
    public string Name { get; set; }

    [Required(ErrorMessage="error")]
    public string Age { get; set; }
}

but not after using the partial class from above. I really need to use a partial class. What am I doing wrong here?

Thanks!

A: 

I tend to use Metadata classes as followed.

[MetadataType(typeof(FalalaMetadata))]
public partial class Falala
{
    public string Name { get; set; }

    public string Age { get; set; }
}
public class FalalaMetadata
{
    [Required(ErrorMessage="Falala requires name.")]
    public string Name { get; set; }

    [Required(ErrorMessage = "Falala requires age.")]
    public string Age { get; set; }
}

Which works fine for me.

The following should also work (and is a better way to implement metadata classes):

[MetadataTypeAttribute(typeof(Falala.FalalaMetaData))]
public partial class Falala
{
    internal sealed class FalalaMetadata
    {
        [Required(ErrorMessage="Falala requires name.")]
        public string Name { get; set; }

        [Required(ErrorMessage = "Falala requires age.")]
        public string Age { get; set; }
    }
}
Martijn Laarman
It still doesn't work for me. Thanks for your help though.
maze
That's weird, my projects tend to be filled with partial classes from webservices and I have no problem assigning metadata budy classes. What's the DataAnnotation's version you work with ?
Martijn Laarman
System.ComponentModel.DataAnnotations.dll v3.6. Thanks.
maze
A: 

I ran into a similar problem and finally got it working by putting both the Model class and the Metadata "buddy" class in the same namespace, even though my references seemed ok. I'm kind of a .net noob though so I'm not exactly comfortable with namespaces, could be something else.

Dzejms
A: 

Could Internal on the nested class be the reason...?

I had a similiar problem and it seemed to all boiled down to not making the individual fields in the nested metadata class public - wonder if making the whole class internal causes the same problem?

Grant