- 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/
我一直在为初学者阅读 nhibernate 3.0 并阅读了一些常见错误(我犯了一些错误) 我想知道将一个或多个记录设为只读有哪些策略。现在我取回所有行并循环遍历它们,使它们通过 session.Re
我们有一个使用 NHibernate 的相当健壮的系统,我们正在从单个数据库服务器迁移到拥有两台服务器,一台用于管理,另一台用于我们面向公众的网站。这主要是为了让我们可以使用不会影响当前站点的工作流来
我在尝试构建一个时遇到以下错误 session 工厂: PersistenceTests.Can_Map_Orders_To_Database : Failed System.IndexOutOfRa
如果客户有很多订单附加到他们。您将如何使用 NHibernate 延迟加载订单列表。 是不是需要设置映射文件?任何帮助或示例都会很棒。 最佳答案 Chris 的建议是我会怎么做,但是如果您想在运行时执
我正在尝试使用 HQL 对一个简单的查询进行分页,并将总行数作为同一查询的一部分进行检索。 我的查询很简单... var members = UnitOfWork.CurrentSession.Cre
我有旧版数据库,存储的日期表示无日期为9999-21-31, 列Till_Date的类型为DateTime not-null="true"。 在应用程序中,我要构建持久化类,将no-date表示为nu
您可以指定命名空间和程序集以使用 HBM 文件顶部的类型: 您可以在同一个映射文件中使用来自多个程序集/命名空间的类型,如果可以,这样做的语法是什么? 最佳答案 您可以从 HBM 文件的顶部删除默认
如何强制 NHibernate 在多对多集合上执行 RIGHT 外连接或 INNER 连接而不是 LEFT 外连接? 我想这样做的原因是因为过滤应用于集合元素。使用左连接,您将获得与未过滤查询相同的返
我们开始在我的工作场所使用NHibernate,包括从映射生成模式。我们的DBA想要的一件事是主键和外键关系的名称一致。我已经能够设置FK约束名称,但是在的文档中看,它似乎不存在命名主键约束的方法。
我需要NHibernate来执行这样的查询: SELECT * FROM Users ORDER BY Func(FirstName, LastName) Standart NHibernate Or
假设在一个实体中有属性 id、用户名、年龄、地址。现在我只想要 id 和 username 并使用此代码。 投影可以从查询中返回实体列表以外的内容。 var proj = Projections.Pr
我花了很长时间,但我终于让 nHibernate 的 Hello World 工作了。在我做了“延迟加载”之后它起作用了。老实说,我无法告诉您为什么这一切都有效,但确实如此,现在我正在阅读您不需要延迟
假设您有两个类,Person 和 Address。 Person 有一个对 Address 的引用,如下所示: public class Person { public virtual Addre
我在 NHibernate 引用文档 中阅读第 10 章“只读实体”如下: http://nhibernate.info/doc/nh/en/index.html#readonly 但不幸的是我不知道
有谁知道 NHibernate 是否支持从存储过程返回输出参数?我在文档中进行了搜索,但无法真正找到任何可以确认的内容。 最佳答案 我面临同样的问题。 NHibernate 不允许您以这种方式使用存储
简而言之,什么工作得更快: SessionFactory 预编译 XML 配置,或 流畅的NHibernate提供 以编程方式配置? 最佳答案 我个人的经验是,Configuration 对象的构建(
我的域类具有如下所示的集合: private List _foos = new List(); public virtual ReadOnlyCollection Foos { get { retur
当我有一个带有一对多子集合的实体对象时,我需要查询一个特定的子对象,是否有我还没有想出的功能或一些巧妙的模式来避免 NHibernate获取整个子集合? 例子: class Parent {
在我的域中,员工和部门具有一对多的双向关系;为了让子员工同步这个,我有一个“内部”访问字段,用于部门中员工的集合(NHibernate 的 Iesi),否则它将是只读公共(public)的。像这样:
我有一个 nhibernate 自定义类型,我想用 Fluent NHibernate 映射它。 HBM 映射如下所示。 Services.Data.DateConventionTyp
我是一名优秀的程序员,十分优秀!