-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathTQueryHelperTypeEnum.cs
More file actions
31 lines (30 loc) · 1.14 KB
/
Copy pathTQueryHelperTypeEnum.cs
File metadata and controls
31 lines (30 loc) · 1.14 KB
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
28
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Helper.Core.Library.QueryHelper
{
internal class TQueryHelperTypeEnum
{
public const string QUERY_TYPE = "query_type";
public const string INSERT_TYPE = "insert_type";
public const string UPDATE_TYPE = "update_type";
public const string DELETE_TYPE = "delete_type";
public const string SELECT = "select";
public const string JOINON = "joinon";
public const string JOINONAND = "joinonand";
public const string WHERE = "where";
public const string ORDERBY = "orderby";
public const string GROUPBY = "groupby";
public const string UNION = "union";
public const string FROMIN = "fromin";
public const string IN = "in";
public const string BREAKLEFT = "breakleft";
public const string BREAKRIGHT = "breakright";
public const string INSERT = "insert";
public const string UPDATE = "update";
public const string DELETE = "delete";
public const string AGGREGATE = "aggregate";
}
}