update

2881099
2022-05-01 15:28:28 +08:00
parent 89fc3e0a37
commit da7cb26079
2 changed files with 4 additions and 4 deletions

@@ -64,14 +64,14 @@ new List<Song>(new[] { song1, song2, song3 })
```c# ```c#
new List<Song>(new[] { song1, song2, song3 }) new List<Song>(new[] { song1, song2, song3 })
.IncludeMany( .IncludeByPropertyName(
orm: fsql, orm: fsql,
property: "Tags", property: "Tags",
where: "ParentId=Code", where: "ParentId=Code",
take: 5, take: 5,
select: "id,name" select: "id,name"
); );
//v3.2.x //v3.2.605+
``` ```
## Comparison of the Two Ways of IncludeMany ## Comparison of the Two Ways of IncludeMany

@@ -63,14 +63,14 @@ new List<Song>(new[] { song1, song2, song3 })
```c# ```c#
new List<Song>(new[] { song1, song2, song3 }) new List<Song>(new[] { song1, song2, song3 })
.IncludeMany( .IncludeByPropertyName(
orm: fsql, orm: fsql,
property: "Tags", property: "Tags",
where: "ParentId=Code", where: "ParentId=Code",
take: 5, take: 5,
select: "id,name" select: "id,name"
); );
//v3.2.x //v3.2.605+
``` ```
## 5、IncludeMany 两种方式对比 ## 5、IncludeMany 两种方式对比