From 460994b8457172d45c33a622d85c3c03c070a484 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D0=B4=D1=80=D0=B5=D0=B9?= <41551019+AndreqGav@users.noreply.github.com> Date: Mon, 27 Apr 2026 20:40:44 +0300 Subject: [PATCH 1/2] Add EFCore.Migrations.Toolkit to extensions --- entity-framework/core/extensions/index.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/entity-framework/core/extensions/index.md b/entity-framework/core/extensions/index.md index 846940f9ec..4c02e8e361 100644 --- a/entity-framework/core/extensions/index.md +++ b/entity-framework/core/extensions/index.md @@ -304,6 +304,12 @@ All xml summaries of entities, properties, and enums will be added as comments o [GitHub repository](https://github.com/roohial57/DotNetComponent_EFCommenter) | [NuGet](https://www.nuget.org/packages/EFCommenter) +### EFCore.Migrations.Toolkit + +EF Core migration extensions: auto-applies database comments from XML `` tags, tracks custom SQL as part of the EF model with auto-generated Up/Down migration code, and defines database triggers in `OnModelCreating` with provider-specific SQL generation. For EF Core: 5-10. + +[GitHub repository](https://github.com/AndreqGav/EFCore.Migrations.Toolkit) + ## API Integrations These packages are designed to integrate directly with EF Core to expose various APIs. From daec8dcee8fce4285ebdede6650655ad87e36b62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D0=B4=D1=80=D0=B5=D0=B9?= <41551019+AndreqGav@users.noreply.github.com> Date: Wed, 29 Apr 2026 09:32:08 +0300 Subject: [PATCH 2/2] Update EFCore.Migrations.CustomSql description --- entity-framework/core/extensions/index.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/entity-framework/core/extensions/index.md b/entity-framework/core/extensions/index.md index 4c02e8e361..c5a7297b46 100644 --- a/entity-framework/core/extensions/index.md +++ b/entity-framework/core/extensions/index.md @@ -304,11 +304,17 @@ All xml summaries of entities, properties, and enums will be added as comments o [GitHub repository](https://github.com/roohial57/DotNetComponent_EFCommenter) | [NuGet](https://www.nuget.org/packages/EFCommenter) -### EFCore.Migrations.Toolkit +### EFCore.Migrations.AutoComments -EF Core migration extensions: auto-applies database comments from XML `` tags, tracks custom SQL as part of the EF model with auto-generated Up/Down migration code, and defines database triggers in `OnModelCreating` with provider-specific SQL generation. For EF Core: 5-10. +Automatically applies database comments to tables and columns from XML `` tags. For EF Core: 6-10. -[GitHub repository](https://github.com/AndreqGav/EFCore.Migrations.Toolkit) +[GitHub repository](https://github.com/AndreqGav/EFCore.Migrations.AutoComments) | [NuGet](https://www.nuget.org/packages/EFCore.Migrations.AutoComments) + +### EFCore.Migrations.CustomSql + +Tracks custom SQL and database objects (views, functions, triggers, etc.) as part of the EF model with auto-generated Up/Down migration code. Provider packages add support for specific database engines. For EF Core: 6-9. + +[GitHub repository](https://github.com/AndreqGav/EFCore.Migrations.CustomSql) | [NuGet](https://www.nuget.org/packages/EFCore.Migrations.CustomSql) ## API Integrations