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