hytos / ID2.Manager / ID2.Manager.Dapper / DatabaseEnums.cs @ 49ab10bd
이력 | 보기 | 이력해설 | 다운로드 (306 Bytes)
1 | fdecb3be | yoush97 | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | namespace ID2.Manager.Dapper |
||
8 | { |
||
9 | public enum DatabaseType |
||
10 | { |
||
11 | MSSQL, |
||
12 | SQLITE |
||
13 | } |
||
14 | c52f8bbe | yoush97 | |
15 | public enum DMLType |
||
16 | { |
||
17 | INSERT, UPDATE, DELETE, SELECT, NONE |
||
18 | } |
||
19 | fdecb3be | yoush97 | } |