Rumah >pangkalan data >tutorial mysql >显示EF实体对象的详细错误信息 db.Entry(entity).GetValidationR

显示EF实体对象的详细错误信息 db.Entry(entity).GetValidationR

WBOY
WBOYasal
2016-06-07 15:00:381211semak imbas

方法一:在快速监视中查看db.Entry(entity).GetValidationResult() public class NewsDal { public static News Add(News entity) { using (CmsContext db = new CmsContext()) { News news = new News(); try { news = db.News.Add(entity); db.SaveChanges

方法一:在快速监视中查看db.Entry(entity).GetValidationResult()


    public class NewsDal
    {
        public static News Add(News entity)
        {
            using (CmsContext db = new CmsContext())
            {
                News news = new News();
                try
                {
                    news = db.News.Add(entity);
                    db.SaveChanges();
                }
                catch (Exception ex)
                {
                    throw new Exception(ex.Message);
                }
                return news;
            }
        }
    }


快速监视中查看:db.Entry(entity).GetValidationResult() 


显示EF实体对象的详细错误信息 db.Entry(entity).GetValidationR


方法二:直接catch (DbEntityValidationException ex) 前提先引用:using System.Data.Entity.Validation;

    public class NewsDal
    {
        public static News Add(News entity)
        {
            using (CmsContext db = new CmsContext())
            {
                News news = new News();
                try
                {
                    news = db.News.Add(entity);
                    db.SaveChanges();
                }
                //catch (Exception ex)
                catch (DbEntityValidationException ex)
                {
                    throw new Exception(ex.Message);
                }
                return news;
            }
        }
    }

显示EF实体对象的详细错误信息 db.Entry(entity).GetValidationR



Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn