NPersistence Reference Guide
Used as the value of the NPersistence.cache.storeMode property to specify the behavior when data is read from the database and when data is committed into the database.

Namespace: NPersistence
Assembly: NPersistence (in NPersistence.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

   
 C# 
public enum CacheStoreMode

Members

MemberValueDescription
USE0
Insert/update entity data into cache when read from database and when committed into database: this is the default behavior. Does not force refresh of already cached items when reading from database.
BYPASS1
Don't insert into cache.
REFRESH2
Insert/update entity data into cache when read from database and when committed into database. Forces refresh of cache for items read from database.

See Also