将异常对象设置为未设置为对象的实例。 什么都没有保存到网格视图。 运行时继续显示对象引用异常。 这不是nullreferenceexception错误。
using (var context = new CAREntities1())
{
var args = sender as GridViewRowEditEndedEventArgs;
CAR.ASSET localasset = args.EditedItem as CAR.ASSET;
if (args.EditAction ==
Telerik.Windows.Controls.GridView.GridViewEditAction.Commit)
if (args.EditOperationType ==
Telerik.Windows.Controls.GridView.GridViewEditOperationType.Edit)
var entity = context.ASSETS.Find(localasset.BARCODE);
if (entity == null)
return;
context.Entry(entity).CurrentValues.SetValues(localasset);
context.SaveChanges();///saves to the database
将错误对象设置为未设置为对象的实例。我在尝试 编辑网格视图中的记录。