0

在我的 EF 4.3.1 上调用 entity.savechanges() 时出现错误。我的数据库是一个 sql ce v4 存储,我正在使用 mvvm 模式进行编码。我有一个本地版本的上下文,我将它发送到一个可观察的集合并修改等。这工作正常,当我在数据库中不存在任何行时调用 savechanges() 时,对象仍然很好。当我重新加载应用程序时,对象会按原样填充到我的列表框中,但是如果我添加另一个对象并调用 savechanges() 我会收到错误消息,指出无法将重复值插入到唯一索引中。

据我了解,这意味着上下文正在尝试将我的实体保存到数据存储中,但它似乎正在添加我未触及的原始对象以及新对象。我认为这会让他们独自一人,因为他们的状态没有改变。

private void Load()
    {
        entities.Properties.Include("Images").Load();
        PropertyList = new ObservableCollection<Property>();
        PropertyList = entities.Properties.Local;        

        //Sort the list (based on previous session stored in database)
        var sortList = PropertyList.OrderBy(x => x.Sort).ToList();
        PropertyList.Clear();
        sortList.ForEach(PropertyList.Add);

        propertyView = CollectionViewSource.GetDefaultView(PropertyList);
        if (propertyView != null) propertyView.CurrentChanged += new System.EventHandler(propertyView_CurrentChanged);     


        private void NewProperty()
    {
        try
        {
            if (PropertyList != null)
            {                                             
                Property p = new Property()
                    {
                        ID = Guid.NewGuid(),
                        AgentName = "Firstname Lastname",
                        Address = "00 Blank Street",
                        AuctioneerName = "Firstname Lastname",
                        SaleTitle = "Insert a sales title",
                        Price = 0,
                        NextBid = 0,
                        CurrentImage = null,
                        Status = "Auction Pending",
                        QuadVis = false,
                        StatVis = false, //Pause button visibility
                        Sort = PropertyList.Count + 1,                            
                    };

                PropertyList.Add(p);
                SaveProperties();
            }

        private void SaveProperties()
    {
        try
        {               
            foreach (var image in entities.Images.Local.ToList())
            {
                if (image.Property == null)
                    entities.Images.Remove(image);
            }                
        }

        catch (Exception ex)
        {
            System.Windows.MessageBox.Show(ex.Message);
        }

        entities.SaveChanges();
    }
4

2 回答 2

1

听起来您正在将现有实体添加到上下文中(将它们标记为插入)而不是附加它们(将它们标记为现有的、未修改的)。

我也不确定 new Guid() 是否返回相同的 guid ...我总是使用 Guid.NewGuid() http://msdn.microsoft.com/en-us/library/system.guid.newguid .aspx

于 2012-04-27T05:06:58.300 回答
1

在不评论所有代码的情况下,这是导致您提出的特定问题的一点:

//Sort the list (based on previous session stored in database) 
var sortList = PropertyList.OrderBy(x => x.Sort).ToList(); 
PropertyList.Clear(); 
sortList.ForEach(PropertyList.Add); 

这段代码:

  • 从已被查询并被上下文跟踪为未更改实体的实体开始。也就是说,已知的实体已经存在于数据库中。
  • 创建这些实体的新排序列表。
  • 对本地集合调用 Clear 会导致每个跟踪的实体被标记为已删除并从集合中移除。
  • 将每个实体添加回上下文,使其现在处于已添加状态,这意味着它是新的并且将在调用 SaveChanges 时保存到数据库中,

如此有效地告诉 EF,数据库中存在的所有实体实际上都不存在,需要保存。所以它试图这样做,它会导致你看到的异常。

要解决此问题,请不要清除 DbContext 本地集合并重新添加实体。相反,您应该使用本地集合在视图中排序以支持视图。

于 2012-04-27T13:51:41.957 回答