Deveel.Data.RequestAccess.CacheTable C# (CSharp) 메소드

CacheTable() 공개 메소드

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

            tableCache.Set(cacheKey, table);
        }