Could you please help me , How to store multi line SQL query in app.config file.
below is Example:- I want to store this query in App.config file.
select * from users u LEFT join Employee E on u.id = E.id
Inner Join Department D on d.id=E.id
Left Join Orders O On O.Id = E.id
Inner Join Values V v.id = E.id
WHERE
u.createTime>=Getdate()-1 AND u.deletstatus=1
AND D.Id<>0