What I want to achieve is, from this:
string[] QueryString = new string[]{
"Column1",
"Column2"
};
Create this:
SELECT Column1,Column2
FROM SomeTable
I know that I could do a concat but that's not a very clean way to doit.