diff --git a/Greed-Loading.md b/Greed-Loading.md index df9f9d5..0f9b933 100644 --- a/Greed-Loading.md +++ b/Greed-Loading.md @@ -64,14 +64,14 @@ new List(new[] { song1, song2, song3 }) ```c# new List(new[] { song1, song2, song3 }) - .IncludeMany( + .IncludeByPropertyName( orm: fsql, property: "Tags", where: "ParentId=Code", take: 5, select: "id,name" ); -//v3.2.x +//v3.2.605+ ``` ## Comparison of the Two Ways of IncludeMany diff --git a/贪婪加载.md b/贪婪加载.md index 468704e..3e5500f 100644 --- a/贪婪加载.md +++ b/贪婪加载.md @@ -63,14 +63,14 @@ new List(new[] { song1, song2, song3 }) ```c# new List(new[] { song1, song2, song3 }) - .IncludeMany( + .IncludeByPropertyName( orm: fsql, property: "Tags", where: "ParentId=Code", take: 5, select: "id,name" ); -//v3.2.x +//v3.2.605+ ``` ## 5、IncludeMany 两种方式对比