コード例 #1
0
ファイル: SiteProvider.cs プロジェクト: Epitomy/CMS
        public IEnumerable <Models.Site> AllRootSites()
        {
            string cacheKey = "AllRootSites";

            return(GetCachedData <Site[]>(cacheKey, () => inner.AllRootSites().ToArray()));
        }