将实体模型属性替换为数据库中的值

时间:2012-03-07 13:44:14

标签: c# .net entity-framework entity-framework-4

我有一个包含两个实体的实体框架对象模型:

Alert (1-*) ----- (1) Check

Check表对列UniqueProperty有唯一约束。

检查通常是我数据库中预先存在的实体,任何新警报都应添加到现有检查中。

我在代码中的某处创建了一个简单的对象图:

var alert = new Alert();
alert.Check = new Check { UniqueProperty = someValue };

稍后我想坚持我的对象图:

using (var context = new MyContext())
{
  context.Alerts.AddObject(alert);

  // Replace temp check with actual database check if available.
  var checkFromDb = context.Checks.SingleOrDefault(
      c => c.UniqueProperty = alert.Check.UniqueProperty);
  if (checkFromDb != null)
  {
    alert.Check = checkFromDb;
  }
  context.SaveChanges();
}

因此,当数据库中有相应的检查时,使用那个,否则什么也不做(只会添加)。

上面的代码导致UniqueProperty约束的唯一约束违规。原因是EF记得第一次检查,即使我稍后用数据库中的检查替换它。

我怎样才能摆脱第一次检查?

1 个答案:

答案 0 :(得分:1)

在您准备保存之前,请不要设置支票。如果已存在,请将警报添加到现有检查的警报集合中。如果没有,请创建一个与检查关联的新关联,然后将警报添加到数据库。

var alert = new Alert();

...

using (var context = new MyContext())
{

  // Replace temp check with actual database check if available.
  var checkFromDb = context.Checks.SingleOrDefault(
      c => c.UniqueProperty = alert.Check.UniqueProperty);
  if (checkFromDb != null)
  {
    checkFromDb.Alerts.Add( alert );
  }
  else
  {
    alert.Check = new Check { UniqueProperty = some value };
    context.Alerts.AddObject(alert);
  }
  context.SaveChanges();
}