CacheControllerCacheResultset Method (CacheKey, String, TimeSpan, CachedResultset) | 
 
            Caches the resultset specified under the key specified in the cache related to the connection string for the duration specified.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
Syntaxpublic static void CacheResultset(
	CacheKey key,
	string connectionString,
	TimeSpan duration,
	CachedResultset toCache
)
Public Shared Sub CacheResultset ( 
	key As CacheKey,
	connectionString As String,
	duration As TimeSpan,
	toCache As CachedResultset
)
Parameters
- key
 - Type: SD.LLBLGen.Pro.ORMSupportClassesCacheKey
The key. - connectionString
 - Type: SystemString
The connection string the cache is registered under. Can be empty string. If null,
            the empty string is assumed - duration
 - Type: SystemTimeSpan
The duration. - toCache
 - Type: SD.LLBLGen.Pro.ORMSupportClassesCachedResultset
To cache. 
Exceptions
Remarks
            If no cache is registered related to the connectionstring, this method is a no-op if ThrowExceptionWhenCacheNotAvailable is set to false
            (default), no caching takes place. 
            Doesn't overwrite an existing resultset for key. 
            
See Also