实体框架代码首先多对多尝试创建重复项

时间:2012-01-30 12:55:15

标签: c# entity-framework ef-code-first

在我的应用程序中,我在约会和约会类型之间有多对多的联接。创建数据库时,会创建一个名为AppointmentTypesAppointments的表作为连接表。

当我创建并保存具有多个约会类型的新约会时,正确填充了连接表。

但是,当我稍后编辑并重新保存约会时,不对约会类型进行任何更改,应用程序会尝试在连接表中创建重复的条目(AppointmentTypesAppointments)。

如何阻止应用程序尝试创建这些重复的行?

// appointments are fetched as a group...
using (var context = new SchedulerContext())
        {
            //return GetAll();
            IQueryable<Appointment> queryable = context.Appointments;

            // check if any records exist
            if (queryable.Count() == 0)
            {
                MessageBox.Show(@"No Appointment details found within the database");
            }

           return queryable.ToList();
        }
//-----------------------------------------
// user then edits a single appointment and it is saved as below....
using (var context = new SchedulerContext())
{
    try
    {
        var originalEntity = context.Appointments.Where(x => x.Id == id).FirstOrDefault();
        context.Entry(originalEntity).CurrentValues.SetValues(appointment);
        context.SaveChanges();
        return SuccessResult();
    }
    catch
    {
        return OtherFailResult(id);
    }
}

1 个答案:

答案 0 :(得分:0)

你如何编辑和重新保存?很明显,EF并不知道您正在对现有实体进行更新。您需要检查存在以确定它是添加还是保存。