缺少导航属性的映射

时间:2019-11-29 11:26:25

标签: c# json angular typescript asp.net-core-3.0

        // Navigation proerty        
        public class IngridientUnit
        { 
            public Guid Id{ get; set; } 

            [Required, JsonIgnore]
            public Guid? UnitId{ get; set; }// 0,*

            [Required]
            public Unit Unit { get; set; }

    //... 

我的前端没有UnitId,因为我在那里不需要它。

但是将对象发送到后端Modelstate失败(当然,UnitId丢失了),但是存在一个映射(没有将Unit s-Id关联到{{1 }}手动)?

0 个答案:

没有答案