I have this c# code to make a database. It is working code. But it ugly because of a single line. I want to break it into multiple lines. If I just put line break by the enter key, it gives syntax error. How to beak it a cleaner way:-
string createDataBase = $"CREATE DATABASE {dataBaseName} ON PRIMARY (NAME = {dataBaseName}_Primary, FILENAME = '{primaryPath}'), FILEGROUP {dataBaseName}_FileStreamGroup CONTAINS FILESTREAM(NAME = {dataBaseName}_Filestream, FILENAME = '{filePath}')";
Please let me know how to break it?