1

现在一直在处理这个 C# Entity Framework 更新问题。也许你们中的一个人可以看到我错过了什么。

问题userEntry出在代码部分。我已经追踪并确保userEntry确实填充了我打算更新的信息。调用时entities.SaveChanges();,数据库中的记录不会更新。

            int userId;
            using (Entities entities = new Entities())
            {
                MSIFeedStoreData feedStoreEntry = entities.MSIFeedStoreDatas
                    .FirstOrDefault((d) => d.Alias == user.Alias);

                if (Object.ReferenceEquals(feedStoreEntry, null))
                {
                    throw new ArgumentException("The user's alias could not be located in the feed store. The user cannot be added at this time.");
                }

                int feedStorePersonnelIdValue;
                if (Int32.TryParse(feedStoreEntry.PersonellID, out feedStorePersonnelIdValue))
                {
                    user.EmployeeId = feedStorePersonnelIdValue;
                }
                else
                {
                    throw new ApplicationException("DATABASE BUG CHECK: An entry was found in the feed store for this user but the personnel ID could not be parsed.");
                }

                MSIUser userEntry = entities.MSIUsers
                    .FirstOrDefault((u) => u.EmployeeID == feedStorePersonnelIdValue);

                if (Object.ReferenceEquals(userEntry, null))
                {
                    userEntry = Mapper.Map<MSIUser>(user);
                    userEntry = entities.MSIUsers.Add(userEntry);
                }
                else
                {
                    Mapper.DynamicMap<User, MSIUser>(user, userEntry);
                    entities.MSIUsers.Attach(userEntry);
                }

                userId = userEntry.MSIUser_ID;
                entities.SaveChanges();
            }

            return userId;
        }
4

1 回答 1

3

删除对 的调用Attach,它已经附加到上下文中。

于 2013-07-25T22:10:03.433 回答