When I use ElSqlBundle to read external sql file. An multiline SQL changed to one line sql. For example: @name(example) SELECT COUNT(*) FROM Employee this is changed to SELECT COUNT(*) FROM Employee I would like to preserve multi line structure of SQL if it is possible.
When I use ElSqlBundle to read external sql file. An multiline SQL changed to one line sql. For example:
@name(example)
SELECT
COUNT(*)
FROM
Employee
this is changed to
SELECT COUNT(*) FROM Employee
I would like to preserve multi line structure of SQL if it is possible.