Define the caching options

Namespace: Castle.ActiveRecord
Assembly:  Castle.ActiveRecord (in Castle.ActiveRecord.dll)
Version: 1.0.3.0

Syntax

C#
[SerializableAttribute]
public enum CacheEnum

Members

Member nameDescription
Undefined
Default value, no caching
ReadOnly
Read only cache - use for cases where no write are performed.
ReadWrite
Read write cache
NonStrictReadWrite
Read write cache with looser semantics. Check NHibernate's documentation for the detials.

See Also