From 5e95ed5f7b00369c4e154450d3ded15c2b3f6673 Mon Sep 17 00:00:00 2001 From: Oleg Kyrylchuk Date: Thu, 12 Aug 2021 20:21:10 +0200 Subject: [PATCH 1/2] Improve link to Property Bags documentation page for What's New in EF Core 5.0 page --- entity-framework/core/what-is-new/ef-core-5.0/whatsnew.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entity-framework/core/what-is-new/ef-core-5.0/whatsnew.md b/entity-framework/core/what-is-new/ef-core-5.0/whatsnew.md index 976ba72718..4010345ff8 100644 --- a/entity-framework/core/what-is-new/ef-core-5.0/whatsnew.md +++ b/entity-framework/core/what-is-new/ef-core-5.0/whatsnew.md @@ -213,7 +213,7 @@ public class ProductsContext : DbContext } ``` -These entities can then be queried and updated just like normal entity types with their own, dedicated CLR type. More information can be found in the documentation on [property bags](xref:core/modeling/shadow-properties). +These entities can then be queried and updated just like normal entity types with their own, dedicated CLR type. More information can be found in the documentation on [property bags](xref:core/modeling/shadow-properties#property-bag-entity-types). ## Required 1:1 dependents From cea5c02a1b15f759fcfffa564428d744b1a4b541 Mon Sep 17 00:00:00 2001 From: Oleg Kyrylchuk Date: Fri, 10 Dec 2021 22:18:30 +0100 Subject: [PATCH 2/2] Fix HasManualThroughput for EntityTypeThroughput sample --- .../NewInEFCore6.Cosmos/CosmosModelConfigurationSample.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/core/Miscellaneous/NewInEFCore6.Cosmos/CosmosModelConfigurationSample.cs b/samples/core/Miscellaneous/NewInEFCore6.Cosmos/CosmosModelConfigurationSample.cs index f8eb1448a5..2545d5dbf4 100644 --- a/samples/core/Miscellaneous/NewInEFCore6.Cosmos/CosmosModelConfigurationSample.cs +++ b/samples/core/Miscellaneous/NewInEFCore6.Cosmos/CosmosModelConfigurationSample.cs @@ -84,7 +84,7 @@ protected override void OnModelCreating(ModelBuilder modelBuilder) modelBuilder.Entity( entityTypeBuilder => { - entityTypeBuilder.HasAutoscaleThroughput(3000); + entityTypeBuilder.HasManualThroughput(3000); entityTypeBuilder.HasAutoscaleThroughput(12000); }); #endregion