添加项目文件。

This commit is contained in:
2025-12-02 13:10:10 +08:00
parent 93a2382a16
commit 289aa4cbe7
400 changed files with 91177 additions and 0 deletions

View File

@@ -0,0 +1,84 @@
//namespace Atomx.Data.CacheServices
//{
// public partial interface ICacheService
// {
// /// <summary>
// /// 通过 slug 获取缓存中的页面主题信息
// /// </summary>
// /// <param name="slug"></param>
// /// <param name="data"></param>
// /// <returns></returns>
// Task<PageContentModel?> GetPage(string slug, PageContentModel? data = null);
// /// <summary>
// /// 通过ID获取缓存
// /// </summary>
// /// <param name="slug"></param>
// /// <param name="reload"></param>
// /// <returns></returns>
// Task<PageContentModel?> GetContent(string slug, bool? reload = null);
// }
// public partial class CacheService : ICacheService
// {
// public async Task<PageContentModel?> GetPage(string slug, PageContentModel? data = null)
// {
// var cacheData = await GetCacheAsync<PageContentModel>($"{CacheKeys.ContentPrefix}{slug}");
// if (data != null)
// {
// cacheData = data;
// await SetCacheAsync($"{CacheKeys.ContentPrefix}{slug}", cacheData);
// }
// return cacheData;
// }
// /// <summary>
// /// 通过ID获取缓存
// /// </summary>
// /// <param name="id"></param>
// /// <param name="reload"></param>
// /// <returns></returns>
// public async Task<PageContentModel?> GetContent(string slug, bool? reload = null)
// {
// var cacheData = await GetCacheAsync<PageContentModel>($"{CacheKeys.ContentPrefix}{slug}");
// if (cacheData == null || reload.HasValue)
// {
// var content = (from p in _dbContext.Contents
// where p.Slug == slug && p.Status == (int)ContentStatus.Publish
// select new PageContentModel
// {
// AllowComment = p.AllowComment,
// Status = p.Status,
// Body = p.Body,
// CategoryId = p.CategoryId,
// CreateTime = p.CreateTime,
// Description = p.Description,
// Id = p.Id,
// Localized = new(),
// IsTop = p.IsTop,
// LanguageId = p.LanguageId,
// MetaDescription = p.MetaDescription,
// MetaTitle = p.MetaTitle,
// PublishTime = p.PublishTime,
// Slug = p.Slug,
// Title = p.Title,
// Type = p.Type,
// UpdateTime = p.UpdateTime,
// UserId = p.UserId,
// }).SingleOrDefault();
// if (content != null)
// {
// var Localization = _dbContext.LocalizedProperties.Where(p => p.EntityId == content.Id).ToList();
// content.Localized = Localization;
// cacheData = content;
// await SetCacheAsync($"{CacheKeys.ContentPrefix}{slug}", cacheData);
// }
// }
// return cacheData;
// }
// }
//}