- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我收到这个错误:
a different object with the same identifier value was already associated with the session: 63, of entity: Core.Domain.Model.Employee
在我的 ASP.NET MVC Controller 操作中,我这样做:
public ActionResult Index(int? page)
{
int totalCount;
Employee[] empData = _employeeRepository.GetPagedEmployees(page ?? 1, 5, out totalCount);
EmployeeForm[] data = (EmployeeForm[]) Mapper<Employee[], EmployeeForm[]>(empData);
PagedList<EmployeeForm> list = new PagedList<EmployeeForm>(data, page ?? 1, 5, totalCount);
if (Request.IsAjaxRequest())
return View("Grid", list);
return View(list);
}
public ActionResult Edit(int id)
{
ViewData[Keys.Teams] = MvcExtensions.CreateSelectList(
_teamRepository.GetAll().ToList(),
teamVal => teamVal.Id,
teamText => teamText.Name);
return View(_employeeRepository.GetById(id) ?? new Employee());
}
[HttpPost]
public ActionResult Edit(
Employee employee,
[Optional, DefaultParameterValue(0)] int teamId)
{
try
{
var team = _teamRepository.GetById(teamId);
if (team != null)
{
employee.AddTeam(team);
}
_employeeRepository.SaveOrUpdate(employee);
return Request.IsAjaxRequest() ? Index(1) : RedirectToAction("Index");
}
catch
{
return View();
}
}
映射文件:
员工
public sealed class EmployeeMap : ClassMap<Employee>
{
public EmployeeMap()
{
Id(p => p.Id)
.Column("EmployeeId")
.GeneratedBy.Identity();
Map(p => p.EMail);
Map(p => p.LastName);
Map(p => p.FirstName);
HasManyToMany(p => p.GetTeams())
.Access.CamelCaseField(Prefix.Underscore)
.Table("TeamEmployee")
.ParentKeyColumn("EmployeeId")
.ChildKeyColumn("TeamId")
.LazyLoad()
.AsSet()
.Cascade.SaveUpdate();
HasMany(p => p.GetLoanedItems())
.Access.CamelCaseField(Prefix.Underscore)
.Cascade.SaveUpdate()
.KeyColumn("EmployeeId");
}
}
团队:
public sealed class TeamMap : ClassMap<Team>
{
public TeamMap()
{
Id(p => p.Id)
.Column("TeamId")
.GeneratedBy.Identity();
Map(p => p.Name);
HasManyToMany(p => p.GetEmployees())
.Access.CamelCaseField(Prefix.Underscore)
.Table("TeamEmployee")
.ParentKeyColumn("TeamId")
.ChildKeyColumn("EmployeeId")
.LazyLoad()
.AsSet()
.Inverse()
.Cascade.SaveUpdate();
}
}
我该如何修复这个错误,这里的问题是什么?
最佳答案
您很可能将两名具有相同 ID 的员工添加到 session 中。
找出为什么有两个员工具有相同id的原因。
您是否使用分离的(例如序列化的)实体?您很可能已经从数据库中加载了实体(例如,在加载团队时)和另一个分离并添加的实体。您能做的最好的事情就是根本不使用分离的实例。仅使用其 id 从数据库加载真实实例:
var employee = employeeRepository.GetById(detachedEmployee.id);
var team = _teamRepository.GetById(teamId);
if (team != null)
{
employee.AddTeam(team);
}
_employeeRepository.SaveOrUpdate(employee);
如果您想在 session 中的员工之上写入 detachedEmployee
中的值,请使用 session.Merge
而不是 session.Update
(或 session.SaveOrUpdate
):
var employee = employeeRepository.Merge(detachedEmployee);
// ...
这个错误还有其他原因,但我不知道你在做什么,你的映射文件是什么样的。
编辑
这应该有效:
// put the employee into the session before any query.
_employeeRepository.SaveOrUpdate(employee);
var team = _teamRepository.GetById(teamId);
if (team != null)
{
employee.AddTeam(team);
}
或者使用合并:
var team = _teamRepository.GetById(teamId);
if (team != null)
{
employee.AddTeam(team);
}
// use merge, because there is already an instance of the
// employee loaded in the session.
// note the return value of merge: it returns the instance in the
// session (but take the value from the given instance)
employee = _employeeRepository.Merge(employee);
解释:
同一数据库“记录”在内存中只能有一个实例。 NH 确保查询返回的实例与 session 缓存中已有的实例相同。如果不是这样,同一个数据库字段在内存中就会有多个值。这将是不一致的。
实体由它们的主键标识。因此每个主键值必须只有一个实例。通过查询、Save、Update、SaveOrUpdate 或 Lock 将实例放入 session 中。
当一个实例已经在 session 中(例如通过查询)并且您尝试将具有相同 ID 的另一个实例(例如分离/序列化的实例)放入 session 中时(例如使用更新),您会遇到问题).
解决方案一将实例放入 session 之前任何其他查询。 NH 将在所有后续查询中准确返回此实例!这非常好,但您需要在任何查询之前调用 Update 才能使其正常工作。
方案二使用Merge。合并执行以下操作:
最后,Merge 对已经存在的实例永远不会有问题。实例是否已经在数据库中甚至都没有关系。您只需要考虑到返回值是 session 中的实例,而不是参数。
编辑第二个Employee实例
[HttpPost]
public ActionResult Edit(
Employee employee, // <<== serialized (detached) instance
[Optional, DefaultParameterValue(0)] int teamId)
{
// ...
// load team and containing Employees into the session
var team = _teamRepository.GetById(teamId);
// ...
// store the detached employee. The employee may already be in the session,
// loaded by the team query above. The detached employee is another instance
// of an already loaded one. This is not allowed.
_employeeRepository.SaveOrUpdate(employee);
// ...
}
关于c# - NHibernate - 如何处理 NonUniqueObjectException?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3647112/
大家好,我在尝试将对象数组写入数据库时遇到了 Hibernate 问题。重要的是我有一个从 Web 服务查询构建的对象。这个对象“响应”最多可以包含十个“未付费项目”,当我尝试保留这些项目时,就会
当我使用 JPA 持久保存对象时,出现 NonUniqueObjectException。 我持久化的对象有其他对象,并且在某些情况下这些对象具有相同的 id。 可以对已保存在数据库中的对象进行合并,
我在 Java Hibernate 中使用 SINGLE_TABLE 继承策略,这里是设置: Class A @Cascade(CascadeType.DELETE_ORPHAN, CascadeT
我们使用 DTO 模式将我们的域对象从服务层编码到我们的存储库,然后通过 NHibernate 向下编码到数据库。 我遇到了一个问题,我从存储库中提取了一个 DTO(例如 CustomerDTO),然
我正在编写一个博客引擎作为学习练习。我知道那里有很多博客引擎,但请耐心等待... 我有一个 BlogPost 实体,它有一个属性标签,它是一个与之关联的标签的 IList。 BlogPost.SetT
我有这个简单的情况: @Entity public class Customer{ @ManyToMany(fetch=FetchType.EAGER) @Cascade(Cascad
我有一个包含子实体集合的父实体,几乎每次我访问该父实体时都需要从 web 服务更新这些子实体。我想我可以只对集合执行 Clear(),然后添加我从 Web 服务收到的实体列表。当我收到的实体没有与我刚
我收到这个错误: a different object with the same identifier value was already associated with the session:
我有一个非常简单的方法: public D saveDocument(D document) { final Session currentSession = getCurrentSessio
当我想从数据库中删除对象时出现错误。错误是: org.hibernate.NonUniqueObjectException: a different object with the same iden
我有一个包含 2 个主键的表(所以它们的组合应该是唯一的)。架构是这样的: TABLE="INVOICE_LOGS" INVOICE_NUMBER PK non-null INVOICE_TYPE
我在将多个对象保存到数据库时遇到问题。我得到 org.hibernate.NonUniqueObjectException: 具有相同标识符值的不同对象已与 session 关联我的代码:配置cfg
我有一个实体,其中包含另外两个具有@ManyToOne 关系的实体。 @Entity public class A extends Serializable{ @Id @Generat
当我尝试将给定图像两次添加到同一个目标城市时,出现以下异常: NonUniqueObjectException: a different object with the same identifier
从 grails webapp 添加记录时,我收到 NonUniqueObjectException。发生这种情况是因为 webapp 的用户能够添加记录,并且他们填写的字段之一是域对象/db 表的
尝试从 session 中删除地址对象时,出现此异常org.hibernate.NonUniqueObjectException:具有相同标识符值的不同对象已与 session 关联。 以下是调用源码
我使用 MySQL、Hibernate、JPA 和 Spring,我的问题是我无法一对一关联更新子表;我正在使用外国策略。 当我使用 saveOrUpdate 并调用第一次方法时,我可以将实体保存到数
我有 3 个不同的实体类,即 Pashmina、Description、Image、PashminaColour。这里,Pashmina 与描述、图像和 PashminaColour 具有一对多关系。
在我的模型中有3个实体(实际上超过3个,但实际上是3个实体处于这种情况) Candidate Vacancy Event 它们都具有多对多的关系(候选人可以有可能的空缺和许多 Activity ,空缺
在我的模型中有3个实体(实际上超过3个,但实际上是3个实体处于这种情况) 候选人 职位空缺 Activity 它们都具有多对多的关系(候选人可以有可能的空缺和许多 Activity ,空缺......
我是一名优秀的程序员,十分优秀!