var nextItem = ql.Fragments.Where(x => x.AddedToFinal.Equals(false));
x.AddedToFinal is bool and ql.Fragments is not null this linq statement sporadically get this exception:
System.NullReferenceException: Object reference not set to an instance of an object.
at System.Linq.Enumerable.WhereListIterator1.MoveNext() at System.Linq.Enumerable.Count[TSource](IEnumerable1 source)
There is a question already that should have answered this( linq where clause and count result in null exception.) but this is impossible since the field is a not null Boolean, and this isn't a database object it is a list
Just added: The code where I populate the list is multi-threaded. different fragments add items to the list after they have retrieved the items from the db:
.....
xe = XElement.Parse(result);
XmlFragment xf = new XmlFragment();
xf.Fragment = xe;
xf.LetterQueueOID = lq.LetterQueueOID;
xf.ParentGroupNodeName = ParentGroupNodeName;
xf.LinkingField = GroupNode.LinkingField;
xf.GroupNodeName = GroupNode.GroupNodeName;
lock (queuedLetters[lqOID])
{
if (lq.Fragments == null)
lq.Fragments = new List<XmlFragment>();
lq.Fragments.Add(xf);
}