将List用逗号拼接成字符串原创
金蝶云社区-比邻星
比邻星
5人赞赏了该文章 179次浏览 未经作者许可,禁止转载编辑于2024年09月28日 11:38:37
List<string> entryIds = new List<string>();
string strEntry = string.Join(",", entryIds.ToArray());
List<string> newNo = new List<string>();
string[] sArray = Regex.Split(strEntry, ",", RegexOptions.IgnoreCase);
foreach (string no in sArray)
{
    newNo.Add("'" + no + "'");
}
strEntry = String.Join(",", newNo);
DBServiceHelper.Execute(this.Context, "DELETE FROM Y_QUA_InBoxE WHERE FEntryId in ("+strEntry+")");


图标赞 5
5人点赞
还没有人点赞,快来当第一个点赞的人吧!
图标打赏
0人打赏
还没有人打赏,快来当第一个打赏的人吧!