- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 MVC 应用程序中的 Entity Framework 4.3 遇到了一个相当奇怪的问题。我在 DbContext 周围使用工作单元包装器,在我的 MVC 应用程序中,我使用 Unity 将此 UOW 传递到我的存储库,并将存储库传递到 Controller 。我已经使用 HierarchicalLifetimeManager
注册了 UOW 类型。
当我尝试将一个实体保存到引发错误的数据库时,例如数据库引发 UNIQUE 约束冲突,实体保存在 EF 的 ObjectStateManager
中。因此,当我返回我的应用程序修复错误并保存新实体(没有错误)时,EF 首先尝试再次添加旧的和无效的对象,因此失败并出现相同的错误。
我在这里错过了什么?我相信无效对象应该被 EF 完全忘记,并且这将自动完成。但显然不是这样。
要将对象添加到 DbContext 以持久保存它们,将调用以下命令(其中 base
是 DbContext):
base.Set<TEntity>().Add(objectToPersist);
为了将更改提交到数据库,我调用:
base.SaveChanges();
这会引发错误。
最佳答案
I believe that the invalid object should be completely forgotten by EF and that this would be done automatically. But it's clearly not the case.
是的,事实并非如此,我从来没有听说过在发生异常时实体会自动从上下文中分离。
基本上有两种选择来处理这个问题。我展示了一个简单的模型,其中包含您违反唯一键约束的示例:
public class Customer
{
// so we need to supply unique keys manually
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int Id { get; set; }
public string Name { get; set; }
}
public class MyContext : DbContext
{
public DbSet<Customer> Customers { get; set; }
}
class Program
{
static void Main(string[] args)
{
Database.SetInitializer(new DropCreateDatabaseAlways<MyContext>());
using (var ctx = new MyContext())
{
var customer = new Customer { Id = 1, Name = "X" };
ctx.Customers.Add(customer);
ctx.SaveChanges();
}
// Now customer 1 is in database
using (var ctx = new MyContext())
{
var customer = new Customer { Id = 1, Name = "Y" };
ctx.Customers.Add(customer);
try
{
ctx.SaveChanges();
// will throw an exception because customer 1 is already in DB
}
catch (DbUpdateException e)
{
// customer is still attached to context and we only
// need to correct the key of this object
customer.Id = 2;
ctx.SaveChanges();
// no exception
}
}
}
}
以上是首选解决方案:更正附加到上下文的对象。
如果您出于某种原因需要创建一个新对象,您必须将旧对象从上下文中分离出来。该对象仍处于 Added
状态,当您调用 SaveChanges
时 EF 将尝试再次保存该对象,导致与之前相同的异常。
分离旧对象看起来像这样:
try
{
ctx.SaveChanges();
// will throw an exception because customer 1 is already in DB
}
catch (DbUpdateException e)
{
ctx.Entry(customer).State = EntityState.Detached;
// customer is now detached from context and
// won't be saved anymore with the next SaveChanges
// create new object adn attach this to the context
var customer2 = new Customer { Id = 2, Name = "Y" };
ctx.Customers.Add(customer2);
ctx.SaveChanges();
// no exception
}
如果涉及关系,此过程可能会很棘手。例如,如果 customer
与订单列表有关系,分离 customer
对象将删除客户与其订单之间的引用(如果订单也附加到上下文)。您必须重新建立与新 customer2
的关系。
因此我更愿意修改附加对象以将其置于正确状态。或者让应用程序崩溃,因为此类约束违规通常表示代码中存在错误,或者 - 在多用户环境中 - 应该通过适当的乐观并发检查来处理。
关于c# - EF 不断尝试保留无效对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10417936/
如果这不是一个错误,那就是另一个错误。如果不是那样的话,那就是别的东西了。我觉得我的项目已经改变了很多,现在只是试图解决代码签名问题,结果一切都搞砸了。我严格按照说明进行操作,但出现错误,例如当前的“
我不确定是否有一些我不知道的内置变量或规则,或者 make 是否有问题,或者我只是疯了。 对于我的一个项目,我有一个如下的 makefile: CC=g++ CFLAGS=-O3 `libpng-co
我有大约 10 个 div,它们必须不断翻转,每个 div 延迟 3 秒 这个 codrops 链接的最后一个效果是我正在寻找的,但无需单击 div http://tympanus.net/Devel
我如何使用 jQuery 持续运行 PHP 脚本并每秒获取响应,以及将鼠标上的少量数据发送到同一脚本? 我真的必须添加一些随机扩展才能让这么简单的计时器工作吗? 最佳答案 To iterate is
JBoss 4.x EJB 3.0 我见过如下代码(大大简化): @Stateless @TransactionAttribute(TransactionAttributeType.NOT_SUPPO
使用 PHPStorm,我试图忽略每次尝试进行 git 提交时 pop 的 workspace.xml。 我的 .gitignore 看起来像: /.idea/ .idea/workspace.xml
我是一名优秀的程序员,十分优秀!