I am having some weirdness with the second level cache.
I am deleting an object with the following generic method:
[Transaction(TransactionMode.Requires)]
public virtual void DeleteObject(object obj)
{
ISession session = _sessionManager.OpenSession();
session.Delete(obj);
}
I am logging the cache actions and I can see the object being invalidated and removed:
Invalidating: ncontinuity2.core.domain.AuditEvent.ReviewList#67d175fe-1220-4dff-9c6b-9fe200a1fc89
Releasing: ncontinuity2.core.domain.AuditEvent#67d175fe-1220-4dff-9c6b-9fe200a1fc89
I then try and grab a collection of the type that contained the deleted entity using this generic code:
public virtual IList<T> GetAllByExpression<T>(Expression<Func<T, bool>> expression) where T : class
{
var session = _sessionManager.OpenSession();
var result = session.QueryOver<T>()
.Where(expression)
.List();
return result;
}
The previously deleted entity is in the result set. If I examine the cache log, I have the following entry:
Cache lookup: ncontinuity2.core.domain.AuditEvent#67d175fe-1220-4dff-9c6b-9fe200a1fc89
Cached item was locked: ncontinuity2.core.domain.AuditEvent#67d175fe-1220-4dff-9c6b-9fe200a1fc89
Has anybody any idea why I might get an entry of "Cached Item was locked"?
I am using Nhibernate 3.0.0.3001.