|
@@ -837,6 +837,19 @@ namespace GxPress.Repository.Implement.Note
|
|
|
query.Select(nameof(Entity.Note.Note.Id));
|
|
|
return await _repository.GetAsync<int>(query);
|
|
|
}
|
|
|
+ /// <summary>
|
|
|
+ /// 获取用户最新的草稿Id
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="userId"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<int> GetDraftCountAsync(int userId, bool isTopic)
|
|
|
+ {
|
|
|
+ var query = Q.NewQuery();
|
|
|
+ query.Where(nameof(Entity.Note.Note.UserId), userId);
|
|
|
+ query.Where(nameof(Entity.Note.Note.IsTopic), isTopic);
|
|
|
+ query.Where(nameof(Entity.Note.Note.IsDraft), true);
|
|
|
+ return await _repository.CountAsync(query);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|