Skip to content

Commit 70a8ab0

Browse files
Apply suggestions from code review
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent bdb0d56 commit 70a8ab0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

entity-framework/core/providers/cosmos/unstructured-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ In EF Core 10 and earlier, it was possible to access properties not tracked by E
3838
```
3939

4040
> [!WARNING]
41-
> The `"__jObject"` property was part of the EF Core infrastructure and has been removed in EF Core 11. It should not be used in any version of EF Core as it is no longer available.
41+
> The `"__jObject"` property was part of the EF Core infrastructure. It exists only in EF Core 10 and earlier, and has been removed starting with EF Core 11.
4242
4343
## Using CosmosClient
4444

entity-framework/core/what-is-new/ef-core-11.0/breaking-changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ If you relied on the previous rounding behavior, apply explicit rounding in your
475475

476476
```csharp
477477
var result = await context.Products
478-
.Select(p => (int)Math.Round((double)(p.Int / (p.Int + 1))))
478+
.Select(p => (int)Math.Round((double)p.Int / (p.Int + 1)))
479479
.SingleAsync();
480480
```
481481

0 commit comments

Comments
 (0)