李昊 4 年之前
父節點
當前提交
903b16ed0d
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      GxPress/Repository/GxPress.Repository.Implement/UserRepository.cs

+ 4 - 1
GxPress/Repository/GxPress.Repository.Implement/UserRepository.cs

@@ -117,10 +117,13 @@ namespace GxPress.Repository.Implement
         {
             if (id <= 0) return string.Empty;
 
-            return await _repository.GetAsync<string>(Q
+            var result = await _repository.GetAsync<string>(Q
                 .Select(nameof(User.Name))
                 .Where(nameof(User.Id), id)
             );
+            if (string.IsNullOrWhiteSpace(result))
+                return string.Empty;
+            return result;
         }
 
         public async Task<string> GetAvatarUrlAsync(int id)