I have a function that will be returning my list of customers it gets from a SQL table. But instead of just returning the results of the query in its native sql format, I need it to return them as a string, with each result after the other with a comma in the middle, like this: Customer1,Customer 2, Customer 3, etc...

I know I can use the StringBuilder to build the string, but how can I tell it that I need the results in a string?

Thanks!