|
@@ -7,6 +7,8 @@ using GxPress.EnumConst;
|
|
|
using GxPress.Request.Reply;
|
|
|
using GxPress.Result.Reply;
|
|
|
using System.Transactions;
|
|
|
+using System.Linq;
|
|
|
+
|
|
|
namespace GxPress.Service.Implement.Reply
|
|
|
{
|
|
|
/// <summary>
|
|
@@ -347,10 +349,9 @@ namespace GxPress.Service.Implement.Reply
|
|
|
{
|
|
|
try
|
|
|
{
|
|
|
-
|
|
|
-
|
|
|
using (var tran = new TransactionScope())
|
|
|
{
|
|
|
+ var intList = new List<int>();
|
|
|
var sql = $@"SELECT
|
|
|
a.Id
|
|
|
FROM
|
|
@@ -372,19 +373,7 @@ namespace GxPress.Service.Implement.Reply
|
|
|
AND a.IsRead = 0";
|
|
|
var database = new Database(DatabaseType.MySql, ConfigHelper.GetValue("Database:ConnectionString"));
|
|
|
var connection = database.GetConnection();
|
|
|
- var intList = await connection.QueryAsync<int>(sql);
|
|
|
- var sqlAnalyzeStr = string.Empty;
|
|
|
- foreach (var item in intList)
|
|
|
- sqlAnalyzeStr += $"{item},";
|
|
|
- sqlAnalyzeStr = !string.IsNullOrEmpty(sqlAnalyzeStr) ? sqlAnalyzeStr.Remove(sqlAnalyzeStr.Length - 1, 1) : string.Empty;
|
|
|
- if (!string.IsNullOrEmpty(sqlAnalyzeStr))
|
|
|
- {
|
|
|
- sql = $@"UPDATE tede_analyze
|
|
|
- SET
|
|
|
- IsRead = 1
|
|
|
- WHERE Id IN ({sqlAnalyzeStr}) and id>0";
|
|
|
- await connection.ExecuteScalarAsync<int>(sql);
|
|
|
- }
|
|
|
+ intList.AddRange(await connection.QueryAsync<int>(sql));
|
|
|
sql = $@"
|
|
|
SELECT
|
|
|
b.Id
|
|
@@ -401,20 +390,7 @@ namespace GxPress.Service.Implement.Reply
|
|
|
AND a.UserId ={userId}
|
|
|
AND b.AnalyzeType = 2
|
|
|
AND b.IsRead = 0";
|
|
|
- intList = await connection.QueryAsync<int>(sql);
|
|
|
- sqlAnalyzeStr = string.Empty;
|
|
|
- foreach (var item in intList)
|
|
|
- sqlAnalyzeStr += $"{item},";
|
|
|
- sqlAnalyzeStr = !string.IsNullOrEmpty(sqlAnalyzeStr) ? sqlAnalyzeStr.Remove(sqlAnalyzeStr.Length - 1, 1) : string.Empty;
|
|
|
- if (!string.IsNullOrEmpty(sqlAnalyzeStr))
|
|
|
- {
|
|
|
-
|
|
|
- sql = $@" UPDATE tede_analyze
|
|
|
- SET
|
|
|
- IsRead = 1
|
|
|
- WHERE Id IN ({sqlAnalyzeStr}) and id>0";
|
|
|
- await connection.ExecuteScalarAsync<int>(sql);
|
|
|
- }
|
|
|
+ intList.AddRange(await connection.QueryAsync<int>(sql));
|
|
|
sql = $@"
|
|
|
SELECT
|
|
|
a.Id
|
|
@@ -434,21 +410,7 @@ namespace GxPress.Service.Implement.Reply
|
|
|
AND e.IsDelete = 0
|
|
|
AND a.CommentId = 0
|
|
|
AND a.AnalyzeType = 1";
|
|
|
- intList = await connection.QueryAsync<int>(sql);
|
|
|
- sqlAnalyzeStr = string.Empty;
|
|
|
- foreach (var item in intList)
|
|
|
- sqlAnalyzeStr += $"{item},";
|
|
|
- sqlAnalyzeStr = !string.IsNullOrEmpty(sqlAnalyzeStr) ? sqlAnalyzeStr.Remove(sqlAnalyzeStr.Length - 1, 1) : string.Empty;
|
|
|
- if (!string.IsNullOrEmpty(sqlAnalyzeStr))
|
|
|
- {
|
|
|
- sql = $@"
|
|
|
- UPDATE tede_analyze
|
|
|
- SET
|
|
|
- IsRead = 1
|
|
|
- WHERE Id IN ({sqlAnalyzeStr}) and id>0";
|
|
|
- await connection.ExecuteScalarAsync<int>(sql);
|
|
|
- }
|
|
|
-
|
|
|
+ intList.AddRange(await connection.QueryAsync<int>(sql));
|
|
|
sql = $@"
|
|
|
SELECT
|
|
|
a.Id
|
|
@@ -470,19 +432,13 @@ namespace GxPress.Service.Implement.Reply
|
|
|
AND e.UserId = b.UserId
|
|
|
AND a.AnalyzeType = 1
|
|
|
AND b.UserId ={userId}";
|
|
|
- intList = await connection.QueryAsync<int>(sql);
|
|
|
- sqlAnalyzeStr = string.Empty;
|
|
|
- foreach (var item in intList)
|
|
|
- sqlAnalyzeStr += $"{item},";
|
|
|
- sqlAnalyzeStr = !string.IsNullOrEmpty(sqlAnalyzeStr) ? sqlAnalyzeStr.Remove(sqlAnalyzeStr.Length - 1, 1) : string.Empty;
|
|
|
- if (!string.IsNullOrEmpty(sqlAnalyzeStr))
|
|
|
+ intList.AddRange(await connection.QueryAsync<int>(sql));
|
|
|
+ if (intList.Count() > 0)
|
|
|
{
|
|
|
- sql = $@"
|
|
|
- UPDATE tede_analyze
|
|
|
- SET
|
|
|
- IsRead = 1
|
|
|
- WHERE Id IN ({sqlAnalyzeStr}) and id>0";
|
|
|
- await connection.ExecuteScalarAsync<int>(sql);
|
|
|
+ var query = Q.NewQuery();
|
|
|
+ query.Set(nameof(Entity.Analyze.Analyze.IsRead), true);
|
|
|
+ query.WhereIn(nameof(Entity.Analyze.Analyze.Id), intList);
|
|
|
+ var result = await analyzeRepository.UpdateAsync(query);
|
|
|
}
|
|
|
tran.Complete();
|
|
|
}
|