Skip to content

EOLSymbol enum

Represents the symbol (or symbols) which are used to separate lines in generated SQL statements

public enum Korzh.EasyQuery.EOLSymbol
: Enum, IComparable, IFormattable, IConvertible
ValueNameDescription
0NoneIf this value is chosen the result SQL will be returna as one long string without breaking it on several lines
1CRLFCarriage Return (\r) and Line Feed (\n) symbol combination. Usual end of line in MS Windows world.
2LFLine Feed (\n) symbol. Usual end of line in Unix world.
3CRCarriage Return (\r). Usual end of line in Mac world.