using Metadata with Entity Framework to validate using Data Annotation

被刻印的时光 ゝ 提交于 2019-12-06 08:27:34

问题


I have a entity called Product,this is a part of it's declration:

[EdmEntityTypeAttribute(NamespaceName="NorthwindModel", Name="Product")]
[Serializable()]
[DataContractAttribute(IsReference=true)]
public partial class Product : EntityObject
{
    #region Factory Method

    /// <summary>
    /// Create a new Product object.
    /// </summary>
    /// <param name="productID">Initial value of the ProductID property.</param>
    /// <param name="productName">Initial value of the ProductName property.</param>
    /// <param name="discontinued">Initial value of the Discontinued property.</param>
    public static Product CreateProduct(global::System.Int32 productID, global::System.String productName, global::System.Boolean discontinued)
    {
        Product product = new Product();
        product.ProductID = productID;
        product.ProductName = productName;
        product.Discontinued = discontinued;
        return product;
    }

    #endregion
    #region Primitive Properties

    /// <summary>
    /// No Metadata Documentation available.
    /// </summary>
    [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)]
    [DataMemberAttribute()]
    public global::System.Int32 ProductID
    {
        get
        {
            return _ProductID;
        }
        set
        {
            if (_ProductID != value)
            {
                OnProductIDChanging(value);
                ReportPropertyChanging("ProductID");
                _ProductID = StructuralObject.SetValidValue(value);
                ReportPropertyChanged("ProductID");
                OnProductIDChanged();
            }
        }
    }
    private global::System.Int32 _ProductID;
    partial void OnProductIDChanging(global::System.Int32 value);
    partial void OnProductIDChanged();

    /// <summary>
    /// No Metadata Documentation available.
    /// </summary>
    [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)]
    [DataMemberAttribute()]
    public global::System.String ProductName
    {
        get
        {
            return _ProductName;
        }
        set
        {
            OnProductNameChanging(value);
            ReportPropertyChanging("ProductName");
            _ProductName = StructuralObject.SetValidValue(value, false);
            ReportPropertyChanged("ProductName");
            OnProductNameChanged();
        }
    }
    private global::System.String _ProductName;
    partial void OnProductNameChanging(global::System.String value);
    partial void OnProductNameChanged();

I want to add Data Annotation to it's property .I search intenet and according to this topic : Using DataAnnotations with Entity Framework

I create a partial class this way:

[MetadataType(typeof(PersonMetaData))]
public partial class Product
{

}
public class PersonMetaData
{
    [Required(ErrorMessage = "nima", AllowEmptyStrings = false)]
    public global::System.String ProductName { set; get; }

    [Range(minimum: 10, maximum: 100, ErrorMessage = "NIIMMMAA")]
    public global::System.Int32 ProductID { set; get; }
}

but it does not work. for test I write this code:

using (NorthwindEntities ef=new NorthwindEntities())
        {
            Product p = new Product();
            p.CategoryID = 0;
            p.Discontinued = false;
            p.ProductID = 1000;
            p.ProductName = string.Empty;
            p.QuantityPerUnit = "3";
            p.SupplierID = 3;
            p.UnitsInStock = 0;
            p.UnitsOnOrder = 3;

            var context = new ValidationContext(p, serviceProvider: null, items: null);
            var results = new List<System.ComponentModel.DataAnnotations.ValidationResult>();
            var isValid = Validator.TryValidateObject(p, context, results, true);
            if (!isValid)
            {
                foreach (var validationResult in results)
                {
                    Response.Write(validationResult.ErrorMessage);
                }
            }
        }

but isValid variable always is 'true' . where is my mistake?

thanks


回答1:


Change

public class PersonMetaData
{
    [Required(ErrorMessage = "nima", AllowEmptyStrings = false)]
    public global::System.String ProductName { set; get; }

    [Range(minimum: 10, maximum: 100, ErrorMessage = "NIIMMMAA")]
    public global::System.Int32 ProductID { set; get; }
}

to

public class PersonMetaData
{
    [Required(ErrorMessage = "nima", AllowEmptyStrings = false)]
    public object ProductName { set; get; }

    [Range(minimum: 10, maximum: 100, ErrorMessage = "NIIMMMAA")]
    public object ProductID { set; get; }
}


来源:https://stackoverflow.com/questions/7981780/using-metadata-with-entity-framework-to-validate-using-data-annotation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!