I am currently formatting my SQL queries like this in C#:
string query = "SELECT * "+
"FROM product p"+
"JOIN order o ON p.productID = o.productID";
Is there any alternative ways to achieve the above format without using the + sign?