9

DataAnnotationsはバディクラスでは機能しません。次のコードは常にtrueを検証します。なんで ?

var isValid = Validator.TryValidateObject(new Customer()、Context、results、true);

これがバディクラスです。

public partial class Customer 
{ 
    public string Name { get; set; } 
    public int Age { get; set; } 
}

[MetadataType(typeof(CustomerMetaData))]
public partial class Customer 
{ 
    public class CustomerMetaData 
    { 
        [Required(ErrorMessage = "You must supply a name for a customer.")]        
        public string Name { get; set; } 
    } 
}

これは同じ質問の別のスレッドですが、答えはありません。 リンクテキスト

4

4 に答える 4

29

私はここで答えを見つけました:http://forums.silverlight.net/forums/p/149264/377212.aspx

MVCはMetaDataType属性を認識しますが、他のプロジェクトは認識しません。検証する前に、メタデータクラスを手動で登録する必要があります。

TypeDescriptor.AddProviderTransparent(
            new AssociatedMetadataTypeTypeDescriptionProvider(typeof(Customer), typeof(CustomerMetadata)), typeof(Customer));

var isValid = Validator.TryValidateObject(new Customer(), context, results, true);
于 2010-03-18T03:16:05.533 に答える
5

調査の結果、MetadataType(バディクラス)を使用した場合にTryValidateObjectが常にtrueを返す理由を見つけることができませんでした。ただし、次のコード(xVal)で動作します。

    public static IEnumerable<ErrorInfo> GetErrors(object instance, string name)
    {
        var metadataAttrib = instance.GetType()
                .GetCustomAttributes(typeof(MetadataTypeAttribute), true)
                .OfType<MetadataTypeAttribute>().FirstOrDefault();
        var buddyClassOrModelClass = metadataAttrib != null
                ? metadataAttrib.MetadataClassType
                : instance.GetType();
        var buddyClassProperties = TypeDescriptor.GetProperties(buddyClassOrModelClass)
            .Cast<PropertyDescriptor>();
        var modelClassProperties = TypeDescriptor.GetProperties(instance.GetType())
            .Cast<PropertyDescriptor>();

        var list = from buddyProp in buddyClassProperties
                   join modelProp in modelClassProperties on
                            buddyProp.Name equals modelProp.Name
                   from attribute in buddyProp.Attributes.OfType<ValidationAttribute>()
                   where !attribute.IsValid(modelProp.GetValue(instance))
                   select new ErrorInfo(
                       buddyProp.Name,
                       attribute.FormatErrorMessage(modelProp.Name),
                       instance);

        if (name != null)
            list = list.Where(x => x.PropertyName == name);

        return list;
    }
于 2010-03-11T19:31:57.360 に答える
1

.NET 4.0ではコードをテストしていませんが、.NET 3.5 / Silverlight 3では、メタデータクラスは次のようになります。

[MetadataType(typeof(Customer.CustomerMetaData))]
public partial class Customer 
{ 
    internal sealed class CustomerMetaData 
    {
        private CustomerMetaData()
        {
        }

        [Required(ErrorMessage = "You must supply a name for a customer.")]        
        public string Name; 
    } 
}
于 2010-03-11T11:03:18.963 に答える
1

MetadataType属性がオブジェクトコンテキストによって認識されないという問題があります。検証前にタイプ記述子を手動で追加できますが、次のようになります。 TypeDescriptor.AddProviderTransparent( new AssociatedMetadataTypeTypeDescriptionProvider(typeof(Customer), typeof(CustomerMetaData)), typeof(Customer));

これを処理するためのより簡潔な方法は、エンティティモデルの.ttファイルを更新して、各DTOに以下を追加することです。

    Type currentType = MethodBase.GetCurrentMethod().DeclaringType;
    object[] attributes = currentType.GetCustomAttributes(typeof(MetadataTypeAttribute),false);
    if(attributes.Length > 0)
    {
        //MetadataType attribute found!
        MetadataTypeAttribute metaDataAttribute = (MetadataTypeAttribute)attributes[0];
        TypeDescriptor.AddProviderTransparent(
            new AssociatedMetadataTypeTypeDescriptionProvider(
                currentType, metaDataAttribute.MetadataClassType),currentType);
    }

これにより、部分クラスに属性を追加できます。

[MetadataType(typeof(CustomerMetaData))]
public partial class Customer
{

}

public partial class CustomerMetaData
{
    [Required]
    public string CustomerName { get; set; }
}
于 2014-07-28T19:07:25.407 に答える