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