コード例 #1
0
 public static CollectionCacheEntry Create(IPersistentCollection collection, ICollectionPersister persister)
 {
     return(new CollectionCacheEntry
     {
         state = collection.Disassemble(persister)
     });
 }
コード例 #2
0
 public CollectionCacheEntry(IPersistentCollection collection, ICollectionPersister persister)
 {
     state = collection.Disassemble(persister);
 }
コード例 #3
0
		public CollectionCacheEntry(IPersistentCollection collection, ICollectionPersister persister)
		{
			state = collection.Disassemble(persister);
		}