将List用逗号拼接成字符串原创
5人赞赏了该文章
181次浏览
编辑于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人打赏
还没有人打赏,快来当第一个打赏的人吧!
推荐阅读