我目前正在C#中格式化我的SQL查询:
string query = "SELECT * "+ "FROM product p"+ "JOIN order o ON p.productID = o.productID";
有没有其他方法可以在不使用+号的情况下实现上述格式?
c#
c# ×1