This commit is contained in:
2021-01-14 22:49:59 +00:00
parent 398f14fbbd
commit ea40f954a2
2 changed files with 6 additions and 4 deletions

View File

@@ -7,16 +7,17 @@ using Newtonsoft.Json;
namespace AyaNova.Models
{
//https://stackoverflow.com/questions/46517584/how-to-add-a-parent-record-with-its-children-records-in-ef-core#46615455
//https://stackoverflow.com/questions/46517584/how-to-add-a-parent-record-with-its-children-records-in-ef-core#46615455
public class PartAssemblyItem
{
public long Id { get; set; }
public uint Concurrency { get; set; }
[Required]
public long PartAssemblyId { get; set; }
public PartAssembly PartAssembly { get; set; }
public long PartAssemblyId { get; set; }
public long PartId { get; set; }
[JsonIgnore]
public PartAssembly PartAssembly { get; set; }
}//eoc