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)
{
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)
await EventLogProcessor.LogEventToDatabaseAsync(new Event(UserId, id, BizType, AyaEvent.Retrieved), ct);
return ret;