1 write to list
System.Data.Linq (1)
SqlClient\Reader\ObjectReaderCompiler.cs (1)
314this.list = new LinkedList<CacheInfo>();
6 references to list
System.Data.Linq (6)
SqlClient\Reader\ObjectReaderCompiler.cs (6)
318for (LinkedListNode<CacheInfo> info = this.list.First; info != null; info = info.Next) { 326this.list.Remove(info); 327this.list.AddFirst(info); 335this.list.AddFirst(new LinkedListNode<CacheInfo>(new CacheInfo(elementType, dataReaderType, mapping, options, projection, factory))); 336if (this.list.Count > this.maxCacheSize) { 337this.list.RemoveLast();