This commit is contained in:
2020-05-03 21:21:14 +00:00
parent 7ad76dcc10
commit b9da7a45b6
4 changed files with 19 additions and 9 deletions

View File

@@ -30,7 +30,7 @@ namespace AyaNova.Models
// public ICollection<TranslationItem> TranslationItems { get; set; }
//Not perhaps so useful here but this is a good way to lazy initialize collections which
//is more efficient when there are many child collections (workorder) and means no need to null check the collection
//is more efficient when there are many child collections (but when would that ever be desired for AyaNova?)and means no need to null check the collection
//https://stackoverflow.com/a/20773057/8939
private ICollection<TranslationItem> _translationItem;