在不添加新实体的情况下引用查找实体

时间:2013-02-20 05:50:32

标签: c# .net entity-framework lookup-tables

我有2个EF实体:

public partial class CustomerEntity
{
    public int CustomerId { get; set; }
    public string CustomerName { get; set; }
    public virtual ICollection<RoleEntity> Roles { get; set; }
}

public partial class RoleEntity
{
    public int RoleId { get; set; }
    public string RoleName { get; set; }
}

这是我的插入方法:

public int? InsertCustomer(CustomerEntity customer)
{
    _context.CustomerEntities.Add(customer);

    try
    {
        return _context.SaveChanges();
    }
    catch (DbEntityValidationException exception)
    {
        return null;
    }
}

这是创建新客户的方法:

public int CreateNewCustomer(string Name)
{
    // Some mapping to CustomerEntity
    var _customerEntity = new CustomerEntity
    {
        CustomerName = Name,
        Roles = new List<RoleEntity>
        {
            new RoleEntity
            {
                RoleId = 1
            }
        }
    };
    return InsertCustomer(_customerEntity);
}

RoleEntity是一个“查找”表,意味着它具有预设记录,永远不会有新记录。

每次创建新的CustomerEntity时,它都会有一个或多个角色。如何在不在数据库中创建新角色的情况下插入新的CustomerEntity? 上面的我的CreateNewCustomer方法将在数据库中插入新的Customer和新的Role,而我只想要新的Customer,其角色引用数据库中的现有Role(ID为1)。

3 个答案:

答案 0 :(得分:2)

如上所述,您可以从数据库加载角色并将其添加到客户的Roles集合中,但您也可以将“新”角色用作stub object(无需制作)数据库往返):

public int CreateNewCustomer(string Name)
{
    var role = new RoleEntity { RoleId = 1 };
    AttachEntity(role); // role is "Unchanged" now
    // Some mapping to CustomerEntity
    var customerEntity = new CustomerEntity
    {
        CustomerName = Name,
        Roles = new List<RoleEntity>{ role } // Will not set role to "Added"
    };

    return InsertCustomer(customerEntity);
}

我认为CreateNewCustomer存在于具有DbContext实例的某种存储库中。 AttachEntity除了将实体附加到上下文之外什么都不做:

void AttachEntity<T>(T entity)
{
    this._context.Set<T>().Attach(entity);
}

答案 1 :(得分:1)

您可以从_content加载Role实体,并将对象分配给_customerEntity。

public int? InsertCustomer(CustomerEntity customer, int roleId)
{
    var role =_context.Roles.Find(customer);
    _customerEntity Roles = new List<RoleEntity>{ role };
    return _context.SaveChanges();
}

答案 2 :(得分:1)

只需抓取您要分配给该客户的RoleEntity,然后直接将其添加到客户ICollection