This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user