EF 5:当上下文设置OriginalValues丢失(EF 5 : OriginalValues

2019-10-17 16:46发布

我在EF新手。 所以测试乐观并发我用EF 5,WPF和已经创建的database.The WPF项目包含一个MainWindowTextBox1用于通过主键,搜索客户TextBox2对客户的名称编辑一个textblock (txtLog)记录字段值和保存按钮。 为了模拟并发访问,在SQL Server 2008 Management Studio中我EXCUTE查询“ update client set r01_nomcli = 'GGGGG' where r01_codcli = '4112010002'; ”点击保存按钮之前。 它工作正常, DbUpdateConcurrencyException被解雇,但实体的原始值丢失,并采取相同的值与当前值的。 这是因为,“使用”块引起的实体的脱离。 为了解决这个问题,我刚才在窗口的构造函数之前声明的背景和它实例在“ Window_Loaded ”事件有另一种使这个??? 在您使用EF以及如何建立可重复使用的DAL与EF 5将受到欢迎的大约最佳实践。 谢谢。 代码如下:

 public partial class OptimisticConcurrency : Window
{

//client is an entity

    client _currentClient = null;

    public OptimisticConcurrency()
    {
        InitializeComponent();
    }


    //**************************TextBox1 PreviewKeyDown Event Handler
    private void TextBox_PreviewKeyDown_1(object sender, KeyEventArgs e)
    {
        if (e.Key == Key.Enter)
        {

            using (dbleaseEntities context = new dbleaseEntities())
            {
                _currentClient = context.client.Find(txtCode.Text);
                if (_currentClient == null)
                    MessageBox.Show("Customer " + txtCode.Text + " not found.", "Error", MessageBoxButton.OK, MessageBoxImage.Error);
                else
                    this.DataContext = _currentClient;
            }
        }
    }


//*****************Save Button Click Event Handler

private void Button_Click_2(object sender, RoutedEventArgs e)
    {
        using (dbleaseEntities context = new dbleaseEntities())
        {
            context.Configuration.ValidateOnSaveEnabled = false;
            try
            {
                context.Entry(_currentClient).State = System.Data.EntityState.Modified;
                context.SaveChanges();
                MessageBox.Show("Success.", "Save", MessageBoxButton.OK,    MessageBoxImage.Information);
            }
            catch (DbEntityValidationException ex)
            {
                string ss = "";
                foreach (var error in ex.EntityValidationErrors)
                    ss = string.Join(Environment.NewLine, error.ValidationErrors.Select(v => v.ErrorMessage));
                MessageBox.Show(ss, "Error", MessageBoxButton.OK, MessageBoxImage.Error);
             }

            catch (DbUpdateConcurrencyException ex)
            {
                string StrValues= "";
                DbPropertyValues ov = ex.Entries.Single().OriginalValues;
                DbPropertyValues cv = ex.Entries.Single().CurrentValues;
                DbPropertyValues dv = ex.Entries.Single().GetDatabaseValues();

                StrValues=  "Original value  : " + ov["r01_nomcli"] + Environment.NewLine +
                            "Current value   : " + cv["r01_nomcli"] + Environment.NewLine +
                            "Database value  : " + dv["r01_nomcli"];

               txtLog.Text = StrValues



            }
        }
    }

Answer 1:

你有大致有三种选择

  1. 你现在在做什么 - 即保持连接到上下文对象
  2. 使用自跟踪实体: http://blogs.msdn.com/b/efdesign/archive/2009/03/24/self-tracking-entities-in-the-entity-framework.aspx
  3. 使用GetDatabaseValues


文章来源: EF 5 : OriginalValues are lost when context is disposed