Skip to content

Commit 77d718d

Browse files
authored
Update delete-from-query.md
1 parent a93e5ac commit 77d718d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/pages/features/delete-from-query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ context.Customers.Where(x => !x.IsActive).DeleteFromQuery();
1515
context.Customers.Where(x => x.ID == userId).DeleteFromQuery();
1616
```
1717

18-
[Try it](https://dotnetfiddle.net/msiYwA)
18+
Try it: [NET Framework](https://dotnetfiddle.net/msiYwA) | [NET Core](https://dotnetfiddle.net/9ZlWiG)
1919

2020
## Purpose
2121
`Deleting` entities using `SaveChanges` normally requires to load them first in the `ChangeTracker`. These additional round-trips are often not necessary.

0 commit comments

Comments
 (0)