Deveel.Data.RequestAccess.CacheTable C# (CSharp) Method

CacheTable() public method

public CacheTable ( string cacheKey, ITable table ) : void
cacheKey string
table ITable
return void
        public override void CacheTable(string cacheKey, ITable table)
        {
            var tableCache = TableCache;
            if (tableCache == null)
                return;

            tableCache.Set(cacheKey, table);
        }