gpt4 book ai didi

c# - EntityFramework Core - 复制实体并将其放回数据库

转载 作者:太空狗 更新时间:2023-10-29 20:09:27 25 4
gpt4 key购买 nike

复制实体、根据用户输入对其进行一些更改,然后将其重新插入数据库是否有最佳实践?

一些其他 Stackoverflow 线程已经提到,即使数据库中存在相同的主键,EF 也会为您处理插入新对象,但我不太确定 EF Core 是如何处理它的。每当我尝试复制一个对象时,我都会收到错误

Cannot insert explicit value for identity column in table when IDENTITY_INSERT is set to OFF

基本上我只需要一种干净的方法来复制一个对象,根据用户输入对其进行一些更改,然后将该副本插入回数据库,并让 Id 正确地自动递增。是否有无需手动将属性设置为 null 或空的最佳实践或简单方法?

编辑:从数据库中检索对象的示例代码:

    public Incident GetIncidentByIdForCloning(int id)
{
try
{
return _context.Incident.Single(i => i.IncidentId == id);
}
catch
{
return null;
}
}

获取对象后的代码(因为有些字段是自动生成的,比如 RowVersion 是一个时间戳):

public IActionResult Clone([FromBody]Incident Incident)
{
var incidentToCopy = _incidentService.IncidentRepository.GetIncidentByIdForCloning(Incident.IncidentId);
incidentToCopy.IncidentTrackingRefId = _incidentService.IncidentRepository.GetNextIdForIncidentCategoryAndType(
Incident.IncidentCategoryLookupTableId, Incident.IncidentTypeLookupTableId).GetValueOrDefault(0);
incidentToCopy.RowVersion = null;
incidentToCopy.IncidentId = 0; //This will fail with or without this line, this was more of a test to see if manually setting would default the insert operation, such as creating a brand new object would normally do.
incidentToCopy.IncidentCategoryLookupTableId = Incident.IncidentCategoryLookupTableId;
incidentToCopy.IncidentTypeLookupTableId = Incident.IncidentTypeLookupTableId;
var newIncident = _incidentService.IncidentRepository.CreateIncident(incidentToCopy);
...

我意识到我可以创建一个全新的对象并进行左手复制,但这似乎非常低效,我想知道 EF Core 是否提供了更好的解决方案。

最佳答案

因此,在创建这个线程之前,我比最初偶然发现它的时候更仔细地浏览了“可能重复”线程,并且有一个不太受欢迎的解决方案,我忽略了它基本上只是捕获了所有从数据库中检索对象时立即获取值 - 并且它不会在此过程中检索对该对象的引用。我的代码现在看起来像这样:

try
{
var incidentToCopy = _context.Incident.Single(i => i.IncidentId == id);
return (Incident) _context.Entry(incidentToCopy).CurrentValues.ToObject();
}

关于c# - EntityFramework Core - 复制实体并将其放回数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43586915/

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