Ejemplo n.º 1
0
 public CacheMapEntry CreateCacheMapEntry(Type entityType, sbyte idIndex, Object id, Object value, CacheMapEntry nextEntry)
 {
     return(new DefaultCacheMapEntry(entityType, idIndex, id, value, nextEntry));
 }
Ejemplo n.º 2
0
 public CacheMapEntry(Type entityType, sbyte idIndex, Object id, Object value, CacheMapEntry nextEntry)
 {
     Id             = id;
     this.value     = value;
     this.nextEntry = nextEntry;
 }
Ejemplo n.º 3
0
 public void SetNextEntry(CacheMapEntry nextEntry)
 {
     this.nextEntry = nextEntry;
 }
Ejemplo n.º 4
0
 public DefaultCacheMapEntry(Type entityType, sbyte idIndex, Object id, Object value, CacheMapEntry nextEntry)
     : base(entityType, idIndex, id, value, nextEntry)
 {
     this.entityType = entityType;
     this.idIndex    = idIndex;
 }