MVC3 对一个或多个实体的验证失败

时间:2021-03-30 05:19:51
下面是实体集

    public partial class Coop_Content
    {
        public int Id { get; set; }
        public int ColumnId { get; set; }
        public int TitleID { get; set; }
        public string TitleImg { get; set; }
        public string Content { get; set; }
        [Required(ErrorMessage = "文章内容不能为空")]
        public string ContentStr { get { return this.Content.Length > 20 ? this.Content.Substring(0, 20) + "..." : this.Content; } }
        public string ContentKeys { get; set; }
        public Nullable<System.DateTime> DateTime { get; set; }
        public string Author { get; set; }
        public string Source { get; set; }
        public string SourceUrl { get; set; }
        public int Hits { get; set; }
        public Nullable<byte> StyleId { get; set; }
        public byte IsShow { get; set; }
        public byte Topid { get; set; }
        public string Image { get; set; }
        public string Title { get; set; }
        [Required(ErrorMessage = "文章标题不能为空")]
        public string TitleStr { get { return this.Title.Length > 15 ? this.Title.Substring(0, 15) + "..." : this.Title; } }
    
        //public virtual Coop_Title Coop_Title { get; set; }
    }

5 个解决方案

#1


MVC3 对一个或多个实体的验证失败
求来人,加了个验证就出错,没有一点事情都没有

#2


啥意思 看不懂哝 问题是什么尼 MVC3 对一个或多个实体的验证失败

#3


木看懂啊!...

#4


下面加个SET

#5


应该是你验证不过了.具体的 可以

                try
                {
                    db.SaveChanges();
                }
                catch (System.Data.Entity.Validation.DbEntityValidationException dbEx)
                {

                    throw dbEx;
                }

试试

#1


MVC3 对一个或多个实体的验证失败
求来人,加了个验证就出错,没有一点事情都没有

#2


啥意思 看不懂哝 问题是什么尼 MVC3 对一个或多个实体的验证失败

#3


木看懂啊!...

#4


下面加个SET

#5


应该是你验证不过了.具体的 可以

                try
                {
                    db.SaveChanges();
                }
                catch (System.Data.Entity.Validation.DbEntityValidationException dbEx)
                {

                    throw dbEx;
                }

试试