-
-
Notifications
You must be signed in to change notification settings - Fork 524
Expand file tree
/
Copy pathConstants.cs
More file actions
27 lines (25 loc) · 1004 Bytes
/
Constants.cs
File metadata and controls
27 lines (25 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
namespace SqlKata
{
public static class VERB
{
public const string PushField = "*";
public const string StartParenth = "(";
public const string EndParenth = ")";
public const string And = "AND";
public const string And2 = "&&";
public const string And3 = "&";
public const string Or = "OR";
public const string Or2 = "||";
public const string Or3 = "|";
public const string Or4 = "<>";
public const string CaseWhen = "CASE WHEN";
public const string When = "WHEN";
public const string Else = "ELSE";
public const string Then = "THEN";
public const string End = "END";
public static string[] SpecialChar = [StartParenth, EndParenth, PushField];
public static string[] AndOrOpertors = [And, And2, And3, Or, Or2, Or3, Or4];
public static string[] AndOpertors = [And, And2, And3];
public static string[] OrOpertors = [Or, Or2, Or3, Or4];
}
}