Skip to content

Settings and activity

1 result found

  1. 14 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Nick Albrecht commented  · 

    This is an old suggestion, but I thought I'd mention that if you're able to use the more recent versions of C#, this issue is more or less moot after they added support for raw string literals.

    var sqlQuery = @"""
    select Col1, Col2
    FROM MyTable
    WHERE Col3 > 5
    """;