From 3baf42670bb8e017899fcfafcaf5d0be62630eac Mon Sep 17 00:00:00 2001 From: Shay Rojansky Date: Wed, 4 May 2022 20:22:21 +0200 Subject: [PATCH] Add pagination resource links And rename EF Community Standup -> .NET Data Community Standup --- entity-framework/core/managing-schemas/migrations/index.md | 2 +- .../core/miscellaneous/collations-and-case-sensitivity.md | 2 +- entity-framework/core/modeling/relationships.md | 2 +- entity-framework/core/modeling/spatial.md | 2 +- entity-framework/core/querying/pagination.md | 2 ++ 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/entity-framework/core/managing-schemas/migrations/index.md b/entity-framework/core/managing-schemas/migrations/index.md index 7957a7e3f5..0149bcd616 100644 --- a/entity-framework/core/managing-schemas/migrations/index.md +++ b/entity-framework/core/managing-schemas/migrations/index.md @@ -149,4 +149,4 @@ The above was only a brief introduction to migrations. Please consult the other * [Entity Framework Core tools reference - .NET Core CLI](xref:core/cli/dotnet) : Includes commands to update, drop, add, remove, and more. * [Entity Framework Core tools reference - Package Manager Console in Visual Studio](xref:core/cli/powershell) : Includes commands to update, drop, add, remove, and more. -* [EF Core Community Standup session](https://www.youtube.com/watch?v=mSsGERmrhnE&list=PLdo4fOcmZ0oX-DBuRG4u58ZTAJgBAeQ-t&index=20) going over new migration features in EF Core 5.0. +* [.NET Data Community Standup session](https://www.youtube.com/watch?v=mSsGERmrhnE&list=PLdo4fOcmZ0oX-DBuRG4u58ZTAJgBAeQ-t&index=20) going over new migration features in EF Core 5.0. diff --git a/entity-framework/core/miscellaneous/collations-and-case-sensitivity.md b/entity-framework/core/miscellaneous/collations-and-case-sensitivity.md index a17e2f2093..e0a0714032 100644 --- a/entity-framework/core/miscellaneous/collations-and-case-sensitivity.md +++ b/entity-framework/core/miscellaneous/collations-and-case-sensitivity.md @@ -74,4 +74,4 @@ In addition, .NET provides overloads of [`string.Equals`](/dotnet/api/system.str ### Other resources -* [EF Core Community Standup session](https://www.youtube.com/watch?v=OgMhLVa_VfA&list=PLdo4fOcmZ0oX-DBuRG4u58ZTAJgBAeQ-t&index=1), introducing collations and exploring perf and indexing aspects. +* [.NET Data Community Standup session](https://www.youtube.com/watch?v=OgMhLVa_VfA&list=PLdo4fOcmZ0oX-DBuRG4u58ZTAJgBAeQ-t&index=1), introducing collations and exploring perf and indexing aspects. diff --git a/entity-framework/core/modeling/relationships.md b/entity-framework/core/modeling/relationships.md index bf5bb53972..0626575d6e 100644 --- a/entity-framework/core/modeling/relationships.md +++ b/entity-framework/core/modeling/relationships.md @@ -335,4 +335,4 @@ You can also represent a many-to-many relationship by just adding the join entit ## Additional resources -* [EF Core Community Standup session](https://www.youtube.com/watch?v=W1sxepfIMRM&list=PLdo4fOcmZ0oX-DBuRG4u58ZTAJgBAeQ-t&index=32), with a deep dive into Many-to-many and the infrastructure underpinning it. +* [.NET Data Community Standup session](https://www.youtube.com/watch?v=W1sxepfIMRM&list=PLdo4fOcmZ0oX-DBuRG4u58ZTAJgBAeQ-t&index=32), with a deep dive into Many-to-many and the infrastructure underpinning it. diff --git a/entity-framework/core/modeling/spatial.md b/entity-framework/core/modeling/spatial.md index 1e21d42e89..a2a58a5a5a 100644 --- a/entity-framework/core/modeling/spatial.md +++ b/entity-framework/core/modeling/spatial.md @@ -102,4 +102,4 @@ Be sure to read your provider's documentation for additional information on work ### Other resources * [NetTopologySuite Docs](https://nettopologysuite.github.io/NetTopologySuite/) -* [EF Core Community Standup session](https://www.youtube.com/watch?v=IHslY5rrxD0&list=PLdo4fOcmZ0oX-DBuRG4u58ZTAJgBAeQ-t&index=15), focusing on spatial data and NetTopologySuite. +* [.NET Data Community Standup session](https://www.youtube.com/watch?v=IHslY5rrxD0&list=PLdo4fOcmZ0oX-DBuRG4u58ZTAJgBAeQ-t&index=15), focusing on spatial data and NetTopologySuite. diff --git a/entity-framework/core/querying/pagination.md b/entity-framework/core/querying/pagination.md index 6b77f7600d..f1c72558ac 100644 --- a/entity-framework/core/querying/pagination.md +++ b/entity-framework/core/querying/pagination.md @@ -53,4 +53,6 @@ For more information, [see the documentation page on indexes](xref:core/modeling ## Additional resources * To learn more about the shortcomings of offset-based pagination and about keyset pagination, [see this post](https://use-the-index-luke.com/no-offset). +* [.NET Data Community Standup session](https://www.youtube.com/watch?v=DIKH-q-gJNU) where we discuss pagination and demo all the above concepts. * [A technical deep dive presentation](https://www.slideshare.net/MarkusWinand/p2d2-pagination-done-the-postgresql-way) comparing offset and keyset pagination. While the content deals with the PostgreSQL database, the general information is valid for other relational databases as well. +* For extensions on top of EF Core which simplify keyset pagination, see [MR.EntityFrameworkCore.KeysetPagination](https://github.com/mrahhal/MR.EntityFrameworkCore.KeysetPagination) and [MR.AspNetCore.Pagination](https://github.com/mrahhal/MR.AspNetCore.Pagination).