处理ObservableCollection中的更改

时间:2013-10-11 12:48:03

标签: c# entity-framework datagridview

我在datagridView中处理数据修改时没什么问题。 我将DataSource绑定到datagridview,如下所示:

     private void Form1_Load(object sender, EventArgs e)
    {
        var customersQuery = new ObservableCollection<Payment>(context.Payments);
        customersQuery.CollectionChanged += new NotifyCollectionChangedEventHandler(customerQuery_Changed);
        dataGridView1.DataSource = new BindingSource() { DataSource = customersQuery };

    }
    OrdersDataModelContainer context = new OrdersDataModelContainer();

我正在处理如下更改:

    private void customerQuery_Changed(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
    {
        if (e.Action == NotifyCollectionChangedAction.Add)
        {
            foreach (Payment p in e.NewItems)
            {
                context.Payments.Add(p);
            }
        }
        if (e.Action == NotifyCollectionChangedAction.Remove)
        {
            foreach (Payment p in e.OldItems)
            {

                context.Payments.Remove(p);
            }
        }
        context.SaveChanges();
    }

删除工作,但添加不太好。当我点击新行时调用添加操作我因为单元格为空而得到异常。如何以简单的方式我可以改变行为,插入后调用添加结束,我切换到下一行? 另一个问题是修改现有数据行。它们仅在插入新数据后才在数据库中更新。

任何人都可以给我解决方案或指出我应该搜索的地方吗?

2 个答案:

答案 0 :(得分:1)

您可以使用以下课程:

public class MyCollection<T> : System.Collections.ObjectModel.ObservableCollection<T>
{
    public event CollectionChangeEventHandler RealCollectionChanged;

    protected override void OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
    {
        base.OnCollectionChanged(e);
        if (e.Action == System.Collections.Specialized.NotifyCollectionChangedAction.Add && e.NewItems.Count > 0)
        {
            this.OnRealCollectionChanged(e.NewItems[0]);
        }
    }

    protected virtual void OnRealCollectionChanged(object element)
    {
        if (this.RealCollectionChanged != null)
        {
            this.RealCollectionChanged(this, new CollectionChangeEventArgs(CollectionChangeAction.Add, element));
        }
    }
}

此事件将在标准事件之后抛出,但这是可以抛出的最新点。

答案 1 :(得分:1)

在CollectionChanged上插入新的空元素。 在PropertyChanged上向元素插入值。