|
@@ -784,5 +784,19 @@ namespace GxPress.Repository.Implement
|
|
|
result.Total = await connection.ExecuteScalarAsync<int>(sql);
|
|
|
return result;
|
|
|
}
|
|
|
+ /// <summary>
|
|
|
+ /// 删除草稿箱
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="userId"></param>
|
|
|
+ /// <param name="groupId"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<bool> ClearDraftAsync(int userId, int groupId)
|
|
|
+ {
|
|
|
+ var query = Q.NewQuery();
|
|
|
+ query.Where(nameof(Entity.Topic.Topic.UserId), userId);
|
|
|
+ query.Where(nameof(Entity.Topic.Topic.IsDraft), true);
|
|
|
+ query.Where(nameof(Entity.Topic.Topic.GroupId), groupId);
|
|
|
+ return await _repository.DeleteAsync(query) > 0;
|
|
|
+ }
|
|
|
}
|
|
|
}
|