You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Orm/Xtensive.Orm.Manual/Prefetch/PrefetchTest.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -180,7 +180,7 @@ public async Task MainAsyncTest()
180
180
.Prefetch(p =>p.Photo)// Lazy load field
181
181
.Prefetch(p =>p.Employees.Prefetch(e =>e.Photo))// EntitySet Employees and lazy load field of each of its items with the limit on number of items to be loaded
182
182
.Prefetch(p =>p.Manager.Photo);// Referenced entity and lazy load field for each of them
@@ -362,7 +362,7 @@ public async Task DelayedQueryAsyncTest()
362
362
.Prefetch(p =>p.Photo)// Lazy load field
363
363
.Prefetch(p =>p.Employees.Prefetch(e =>e.Photo))// EntitySet Employees and lazy load field of each of its items with the limit on number of items to be loaded
364
364
.Prefetch(p =>p.Manager.Photo);// Referenced entity and lazy load field for each of them
@@ -450,7 +450,7 @@ public async Task CachedQueryAsyncTest()
450
450
.Prefetch(p =>p.Photo)// Lazy load field
451
451
.Prefetch(p =>p.Employees.Prefetch(e =>e.Photo))// EntitySet Employees and lazy load field of each of its items with the limit on number of items to be loaded
452
452
.Prefetch(p =>p.Manager.Photo);// Referenced entity and lazy load field for each of them
0 commit comments