mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update README.md
This commit is contained in:
parent
749b70a621
commit
7108b990b0
10
README.md
10
README.md
@ -26,7 +26,7 @@ Using SqlSugar is very simple , And it's powerful.
|
||||
|
||||
## Feature characteristic
|
||||
|
||||
### 🍳 Join query
|
||||
### Feature1: Join query
|
||||
Super simple query syntax
|
||||
```cs
|
||||
var query5 = db.Queryable<Order>()
|
||||
@ -50,7 +50,7 @@ WHERE
|
||||
([o].[Id] = @Id0)
|
||||
```
|
||||
|
||||
### 📑 Page query
|
||||
### Feature2: Page query
|
||||
```cs
|
||||
|
||||
int pageIndex = 1;
|
||||
@ -59,7 +59,7 @@ WHERE
|
||||
var page = db.Queryable<Student>().ToPageList(pageIndex, pageSize, ref totalCount);
|
||||
```
|
||||
|
||||
### 🚗 Dynamic expression
|
||||
### Feature3:Dynamic expression
|
||||
```cs
|
||||
var names= new string [] { "a","b"};
|
||||
Expressionable<Order> exp = new Expressionable<Order>();
|
||||
@ -76,7 +76,7 @@ SELECT [Id],[Name],[Price],[CreateTime],[CustomId]
|
||||
([Name] like '%'+ CAST(@MethodConst1 AS NVARCHAR(MAX))+'%')
|
||||
)
|
||||
```
|
||||
### Multi-tenant transaction
|
||||
### Feature4: Multi-tenant transaction
|
||||
```cs
|
||||
//Creaate database object
|
||||
SqlSugarClient db = new SqlSugarClient(new List<ConnectionConfig>()
|
||||
@ -102,7 +102,7 @@ db.BeginTran();
|
||||
|
||||
db.CommitTran();
|
||||
```
|
||||
### Singleton Pattern
|
||||
### Feature5: Singleton Pattern
|
||||
Implement transactions across methods
|
||||
```CS
|
||||
public static SqlSugarScope Db = new SqlSugarScope(new ConnectionConfig()
|
||||
|
Loading…
Reference in New Issue
Block a user