I have this array:
And I need to make from array above string,one string like this:
(export_sdf_id=3746) OR (export_sdf_id=3806) OR (export_sdf_id=23) OR (export_sdf_id=6458) OR (export_sdf_id=3740) OR (export_sdf_id=3739) OR (export_sdf_id=3742)
Any idea what is the elegant way to implement it?

string result = String.Join(" OR ", idsArr.Select(x => '(' + x + ')'));