我的问题:我有一个列表对象,我想坚持到sql server,当我在Entity Framework上调用.SaveChanges()时,它会失败,因为上下文中的某些对象无效。
我的问题:我如何只进行有效的更改?我会在UI上工作,通知客户端无效的那些。
我正在使用VSTO Excel工作簿项目,我正在尝试管理ListObject上的数据crud。
我有一个POCO类和实体框架。
我将实体作为事件的IBindingList对象传递给ListObject。
当我在实体上转到.SaveChanges()
时,它会崩溃,因为并非所有对象都有效,看起来像是全有或全无。
所以现在我正在考虑分离无效对象,直到它们变为有效并保存有效项目。
ListObject ListChanged事件的事件过程很奇怪。
让我也分享一下:当你向列表对象添加一行时,这会创建一个新的空对象(除非你没有进行验证)将是一个无效的实体。
public partial class Sheet3
{
private DonorContext db = new DonorContext();
private void Sheet3_Startup(object sender, System.EventArgs e)
{
db.Donors.Load();
IBindingList donors = db.Donors.Local.ToBindingList();
donors.ListChanged += donors_ListChanged;
this.Donors.SetDataBinding(donors, "", "ID", "DonorName", "Address1", "Address2", "City", "State", "PostalCode", "Phone", "Email", "IsPOBox", "HasErrors");
}
// Concider this nothing more than an event to hook into for informing
// Entity Framework to save changes.
void donors_ListChanged(object sender, ListChangedEventArgs e)
{
foreach (var itm in (IBindingList)sender)
{
Donor donor = (Donor)itm;
}
}