使用外键发布新实体会导致创建另一个外部实体而不是引用现有实体

Posting a new entity with foreign key causes creating another foreign entity instead of referencing existing one

我有一个多层洋葱架构的 asp.net 应用程序,目前正在解决 POST 在 table 中创建一个新实体的问题,该实体具有一对多的外国与另一个 table.

的关键关系

这是我的父实体:

    public class Feature : Entity
{
    public string Name { get; set; }
    public decimal Price { get; set; }
    public FeatureType FeatureType { get; set; }
    public ICollection<ConfigurationFeatureState> Configurations { get; set; }
}

这是一个参考:

public class FeatureType: Entity
{
    public string Name { get; set; }
    public bool IsOptional { get; set; }
    public ICollection<Feature> Features { get; set; }
}

实体模型只是给它们加了一个ID

public abstract class Entity 
{
    public Guid ID { get; private set; } = Guid.NewGuid();
}

因此,一个 Feature 可能只有一个 FeatureType,但 FeatureType 有很多 Feature。

我正在使用 FeatureDto 进行演示,它被映射到 FeatureService 中的 Feature。

这是一个 FeatureDto,它只显示了 FeatureType 实体的 GUID FeatureTypeID:

public class FeatureDto : BaseDto
{
    public string Name { get; set; }
    public decimal Price { get; set; }
    public Guid FeatureTypeID { get; set; }
    
}

这是我的 FeatureController POST 方法:

[HttpPost]
public async Task<IActionResult> Post([FromBody] FeatureDto newFeatureDto)
{
    var featureDto = await _featureService.CreateAsync(newFeatureDto);
    return CreatedAtRoute("FeatureById", new { id = featureDto.ID }, featureDto);
}

这里是 FeatureService 的 CreateAsync 方法,它是从通用基础调用的 class(TDto = FeatureDto,TEntity = Feature):

public async Task<TDto> CreateAsync(TDto newEntityDto)
{
    var entity = Mapper.Map<TEntity>(newEntityDto);
    _repository.Create(entity);
    await UnitOfWork.SaveAsync();

    var dto = Mapper.Map<TDto>(entity);
    return dto;
}

我正在使用 AutoMapper 使用以下映射将 Feature 映射到 FeatureDto,反之亦然:

CreateMap<Feature, FeatureDto>()
    .ForMember(dto => dto.FeatureTypeID, opt => opt.MapFrom(db => db.FeatureType.ID))
    .ReverseMap();

问题来了:每当我尝试 POST 数据库中引用已经存在的 FeatureType 的新 Feature 时,都会创建另一个空的 FeatureType(我不需要)。

示例如下:

我正在通过 Postman 使用此请求正文发布新功能:

{
    "name": "LED Strip Neon Car Bottom",
    "price": 200.00,
    "featureTypeID": "41b737f9-1649-4a66-94c7-065d099408e6" // value with this ID is already present in FeatureType table
}

并出现错误 Microsoft.Data.SqlClient.SqlException (0x80131904):无法将值 NULL 插入列 'Name'、table 'DB.dbo.FeatureTypes';列不允许空值。 INSERT 失败。声明已终止。

这是因为在 CreateAsync 方法期间,正在创建一个新的 FeatureType 以及一个 Feature: CreateAsync method debugging.

为什么会发生这种情况,我如何确保不会插入新的 FeatureType,而是从数据库中选择已经存在的 FeatureType?

我已经使用 Fluent API 配置了所有关系,并且在数据库中正确设置了它们,因此那里存在外键:feature table in db

这里也是配置class,如果你需要的话:

class FeatureEntityConfiguration : IEntityTypeConfiguration<Feature>
{
    public void Configure(EntityTypeBuilder<Feature> builder)
    {
        builder.HasOne(f => f.FeatureType).WithMany(ft => ft.Features).IsRequired().HasForeignKey("FeatureTypeID");

        builder.HasKey(f => f.ID);

        builder.Property(f => f.Name).IsRequired().HasMaxLength(100);

        builder.Property(f => f.Price).HasColumnType("decimal(18,2)");
    }
}

抱歉,如果这是一个奇怪的问题,但我是这方面的新手。提前致谢!

我不确定在你所有的层中这会发生什么,但你只需要为 FeatureTypeId 设置导航 属性(可能是 EF Core 中的 Shadow Property),或者明确地在

之后(或之中)将 FeatureType 标记为未更改
_repository.Create(entity);

您是否尝试过获取地图项类型并手动分配您的导航属性?

public async Task<TDto> CreateAsync(TDto newEntityDto)
{
    var entity = Mapper.Map<TEntity>(newEntityDto);

    /***/
    var featureType = _featureTypeRepository.Get(newEntityDto.featureTypeID);
    entity.FeatureType = featureType;
    /***/ 

    _repository.Create(entity);
    await UnitOfWork.SaveAsync();

    var dto = Mapper.Map<TDto>(entity);
    return dto;
}