我有sql参数:
SqlParameter[] parameters2 =
{
new SqlParameter("@codes_PrestaOOP",
string.Concat(contactUS.Select(s => $"{s.PK_PrestaOOP},")))
};
我只想在@codes_PrestaOOP != null
时连接@codes_PrestaOOP。
怎么办?
答案 0 :(得分:0)
只需使用Where
。
SqlParameter[] parameters2 =
{
new SqlParameter("@codes_PrestaOOP",
string.Concat(contactUS.Where(s => s.PK_PrestaOOP != null)
.Select(s => $"{s.PK_PrestaOOP},")))
};