diff --git a/PROMS/VEPROMS.CSLA.Library/Generated/Entry.cs b/PROMS/VEPROMS.CSLA.Library/Generated/Entry.cs index 2c9d9e35..56b1133a 100644 --- a/PROMS/VEPROMS.CSLA.Library/Generated/Entry.cs +++ b/PROMS/VEPROMS.CSLA.Library/Generated/Entry.cs @@ -789,11 +789,13 @@ namespace VEPROMS.CSLA.Library else _LastChanged = Entry.Update(cn, content.ContentID, _DocID, _DTS, _UserID, ref _LastChanged); MarkOld(); - // B2018-126 & B2018-133: Refresh for library document usage change: + // B2018-126 & B2018-133: Refresh for library document usage change (note that original checkin had a null check for + // _MyDocument.DocumentEntries that was causing a sql Distributed Transaction Coordinator error - this was removed + // after original checkin) if (_MyDocument != null) { _MyDocument.Update(); - if (_MyDocument.DocumentEntries != null) _MyDocument.Reset_DocumentEntries(); + _MyDocument.Reset_DocumentEntries(); } } }