gpt4 book ai didi

c# - Entity Framework 核心。如何正确更新相关数据?

转载 作者:太空宇宙 更新时间:2023-11-03 20:52:50 24 4
gpt4 key购买 nike

这个问题很常见,但我还是不明白如何正确更新相关实体?

我有以下代码:

    public async Task<bool> UpdateStepAssignedToLevelAsync(Step step, Guid levelId, int priority = -1)
{
var item = await this._context.StepLevels
.Include(sl => sl.Step)
.FirstOrDefaultAsync(x => x.StepId == step.Id && x.LevelId == levelId);
if (item == null)
{
return false;
}

//this._context.Entry(item).State = EntityState.Detached;
if (priority > -1)
{
item.Priority = priority;
}

item.Step = step;

//this._context.StepLevels.Update(item);
var rows = await this._context.SaveChangesAsync();
return rows > 0;
}

运行时出现以下错误:

InvalidOperationException: The instance of entity type 'Step' cannot be tracked because another instance with the key value '{Id: 35290c18-5b0a-46a5-8f59-8888cf548df5}' is already being tracked. When attaching existing entities, ensure that only one entity instance with a given key value is attached.

据我所知,自方法开始时的选择请求以来,实体正在被跟踪。好的,但是当我分离实体并调用 Update 方法(参见注释行)时,Step 实体没有被更改。但 StepLevel 确实如此:优先级正在改变。当我尝试仅调用 Update 时,EF 会尝试插入新步骤而不是更新现有步骤。

那么,您能给我一些建议吗,这里最好的练习是什么?

提前致谢!

最佳答案

首先,分离实体不会分离相关实体,因此分离 item 不会分离使用 .Include(sl => sl) 检索的 item.Step .步骤).

其次,由于您不想更改 item.Step,而是要更新现有的 Step 实体 (x.StepId == step. Id),并且您知道上下文正在跟踪(包含)从数据库加载的相应 Step 实体,您应该使用通过 Entry(...).CurrentValues.SetValues 方法。

所以去掉

item.Step = step;

并改用以下内容:

this._context.Entry(item.Step).CurrentValues.SetValues(step);

最后一个音符。当您使用附加实体时,不需要(不应该)使用 Update 方法。如果任何实体被跟踪,更改跟踪器将自动检测更改的属性值。

关于c# - Entity Framework 核心。如何正确更新相关数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53557427/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com