We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4ae2dc commit 64fbfd2Copy full SHA for 64fbfd2
entity-framework/core/modeling/shadow-properties.md
@@ -41,3 +41,5 @@ Shadow properties can be referenced in LINQ queries via the `EF.Property` static
41
var blogs = context.Blogs
42
.OrderBy(b => EF.Property<DateTime>(b, "LastUpdated"));
43
```
44
+
45
+Shadow properties cannot be accessed after a no-tracking query since the entities returned are not tracked by the change tracker.
0 commit comments