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

@@ -128,7 +128,8 @@ namespace AyaNova.Biz
// //
internal async Task<PartAssembly> GetAsync(long id, bool logTheGetEvent = true) internal async Task<PartAssembly> GetAsync(long id, bool logTheGetEvent = true)
{ {
var ret = await ct.PartAssembly.SingleOrDefaultAsync(m => m.Id == id); //.Include(w => w.Items)
var ret = await ct.PartAssembly.AsNoTracking().Include(z=>z.Items).SingleOrDefaultAsync(m => m.Id == id);
if (logTheGetEvent && ret != null) if (logTheGetEvent && ret != null)
await EventLogProcessor.LogEventToDatabaseAsync(new Event(UserId, id, BizType, AyaEvent.Retrieved), ct); await EventLogProcessor.LogEventToDatabaseAsync(new Event(UserId, id, BizType, AyaEvent.Retrieved), ct);
return ret; return ret;

View File

@@ -7,16 +7,17 @@ using Newtonsoft.Json;
namespace AyaNova.Models 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 class PartAssemblyItem
{ {
public long Id { get; set; } public long Id { get; set; }
public uint Concurrency { get; set; } public uint Concurrency { get; set; }
[Required] [Required]
public long PartAssemblyId { get; set; } public long PartAssemblyId { get; set; }
public PartAssembly PartAssembly { get; set; }
public long PartId { get; set; } public long PartId { get; set; }
[JsonIgnore]
public PartAssembly PartAssembly { get; set; }
}//eoc }//eoc