我的Asp.net mvc Web应用程序中有以下Action方法: -
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create(SDJoin sdj, FormCollection formValues)
{
Try
{
//code goes here
repository.InsertOrUpdateSD(sdj.StorageDevice, User.Identity.Name, assetid);
repository.Save();
}
catch (Exception ex)
{
//code goes here
}
PopulateViewBagData();
return View(sdj);
}
调用以下方法: -
public void InsertOrUpdateSD(TMSStorageDevice sd, string username, long assetid)
{
var resource = entities.Resources.AsNoTracking().SingleOrDefault(a => a.RESOURCEID == assetid);
if (sd.TMSStorageDeviceID == default(int))
{
// New entity
int technologyypeID = GetTechnologyTypeID("Storage Device");
Technology technology = new Technology
{
IsDeleted = true,
IsCompleted = false,
TypeID = technologyypeID,
Tag = "SD" + GetTagMaximumeNumber2(technologyypeID).ToString(),
StartDate = DateTime.Now,
IT360ID = assetid
};
InsertOrUpdateTechnology(technology);
Save();
sd.TMSStorageDeviceID = technology.TechnologyID;
tms.TMSStorageDevices.Add(sd);
}
}
我的模特课如下: -
public partial class TMSStorageDevice
{
public int TMSStorageDeviceID { get; set; }
public string Name { get; set; }
public Nullable<decimal> size { get; set; }
public int RackID { get; set; }
public string CustomerName { get; set; }
public string Comment { get; set; }
public byte[] timestamp { get; set; }
public virtual Technology Technology { get; set; }
public virtual TMSRack TMSRack { get; set; }
}
但如果我调用Create动作方法,我将得到以下异常: -
System.Data.Entity.Validation.DbEntityValidationException was caught
HResult=-2146232032
Message=Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.
Source=EntityFramework
StackTrace:
at System.Data.Entity.Internal.InternalContext.SaveChanges()
at System.Data.Entity.Internal.LazyInternalContext.SaveChanges()
at System.Data.Entity.DbContext.SaveChanges()
at TMS.Models.Repository.Save() in c:\Users\Administrator\Documents\Visual Studio 2012\Projects\TMS\TMS\Models\Repository.cs:line 1926
at TMS.Controllers.StorageDeviceController.Create(SDJoin sdj, FormCollection formValues) in c:\Users\Administrator\Documents\Visual Studio 2012\Projects\TMS\TMS\Controllers\StorageDeviceController.cs:line 160
InnerException:
任何人都可以提出错误的建议,因为我仔细检查我的代码并且每件事都应该正常工作? 感谢
答案 0 :(得分:108)
您尚未显示Save()
方法,但如果您可以添加此类代码,则会收到包含您要查找的所有详细信息的异常
try
{
_context.SaveChanges();
}
catch (System.Data.Entity.Validation.DbEntityValidationException dbEx)
{
Exception raise = dbEx;
foreach (var validationErrors in dbEx.EntityValidationErrors)
{
foreach (var validationError in validationErrors.ValidationErrors)
{
string message = string.Format("{0}:{1}",
validationErrors.Entry.Entity.ToString(),
validationError.ErrorMessage);
// raise a new exception nesting
// the current instance as InnerException
raise = new InvalidOperationException(message, raise);
}
}
throw raise;
}
答案 1 :(得分:6)
我知道这个问题现在已经过时了,但我希望有人认为这也很有用。
答案 2 :(得分:1)
虽然这是一个老帖子,但这种方法可以更有成效!
尝试这样的事情
try
{
pcontext.SaveChanges();
}
catch (System.Data.Entity.Infrastructure.DbUpdateConcurrencyException ex)
{
Console.WriteLine(ex.InnerException);
}
catch (System.Data.Entity.Core.EntityCommandCompilationException ex)
{
Console.WriteLine(ex.InnerException);
}
catch (System.Data.Entity.Core.UpdateException ex)
{
Console.WriteLine(ex.InnerException);
}
catch (System.Data.Entity.Infrastructure.DbUpdateException ex) //DbContext
{
Console.WriteLine(ex.InnerException);
}
catch (Exception ex)
{
Console.WriteLine(ex.InnerException);
throw;
}