mirror of
https://github.com/dotnetcore/FreeSql.git
synced 2026-02-05 07:50:52 +08:00
update
@@ -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
|
||||||
|
|||||||
4
贪婪加载.md
4
贪婪加载.md
@@ -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 两种方式对比
|
||||||
|
|||||||
Reference in New Issue
Block a user