Hello - newbie'ish question.
I'm writing short use utilities in VB.NET that have SQL statements embedded in the code which I assign to variables.
It hacks me off to break up a perfectly fine but long SQL statement into multiple double quoted strings and string it together with & _ just to make the code more readable, and similarly formatted as to how it was when I wrote it in the first place using query analyzer.
With VB.NET is there an artful style or operator I can put in front of the double quotes to make this cleaner? (by operator I'm thinking of how @" xxx " escapes backwacks for you in your string, is there something akin to that for letting your strings wrap multiple lines without need of & _ appending)
Thanks!
I'm writing short use utilities in VB.NET that have SQL statements embedded in the code which I assign to variables.
It hacks me off to break up a perfectly fine but long SQL statement into multiple double quoted strings and string it together with & _ just to make the code more readable, and similarly formatted as to how it was when I wrote it in the first place using query analyzer.
With VB.NET is there an artful style or operator I can put in front of the double quotes to make this cleaner? (by operator I'm thinking of how @" xxx " escapes backwacks for you in your string, is there something akin to that for letting your strings wrap multiple lines without need of & _ appending)
Thanks!