SqlSugar/README.md

14 lines
268 B
Markdown
Raw Normal View History

2017-05-23 07:40:55 +08:00
# SqlSugar 4.X
2017-05-23 07:35:31 +08:00
2017-05-23 07:41:22 +08:00
## 1. Query
2017-05-23 07:35:31 +08:00
2017-05-23 07:41:22 +08:00
### 1.1 Create Connection
2017-05-23 07:35:31 +08:00
```c
2017-05-23 07:40:07 +08:00
SqlSugarClient db = new SqlSugarClient(new SystemTableConfig()
{ ConnectionString = Config.ConnectionString, DbType =DbType.SqlServer, IsAutoCloseConnection = true });
2017-05-23 07:35:31 +08:00
```
2017-05-23 07:41:22 +08:00
### 1.2 Introduction
2017-05-23 07:39:47 +08:00
2017-05-23 07:35:31 +08:00