Files
raven/server/AyaNova/models/PartAssemblyItem.cs
2021-03-02 17:15:24 +00:00

28 lines
778 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
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
public class PartAssemblyItem
{
public long Id { get; set; }
public uint Concurrency { get; set; }
[Required]
public long PartAssemblyId { get; set; }
[Required]
public long PartId { get; set; }
[NotMapped]
public string PartViz { get; set; }
[Required]
public decimal Quantity { get; set; }
[JsonIgnore]
public PartAssembly PartAssembly { get; set; }
}//eoc
}//eons