From 14e254280dd8f6a00e5cf96fb4233ccb79836b13 Mon Sep 17 00:00:00 2001 From: EngincanV Date: Thu, 26 Feb 2026 14:54:13 +0300 Subject: [PATCH] Update abp-10-2.md --- .../en/release-info/migration-guides/abp-10-2.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/en/release-info/migration-guides/abp-10-2.md b/docs/en/release-info/migration-guides/abp-10-2.md index 64ab4f36e3..56e4b579bc 100644 --- a/docs/en/release-info/migration-guides/abp-10-2.md +++ b/docs/en/release-info/migration-guides/abp-10-2.md @@ -13,7 +13,7 @@ This document is a guide for upgrading ABP v10.1 solutions to ABP v10.2. There a ## Open-Source (Framework) -This version only requires changes on the open-source side. **There are no breaking changes on the PRO side.** +This version contains the following changes on the open-source side: ### Add New EF Core Migrations for Audit Logging Module @@ -116,3 +116,17 @@ x.WithHostAuthentication(); - **BatchRunCondition renamed:** `BatchRunCondition? BatchRunCondition` → `RunCondition? RunCondition` in `AbpBackgroundJobsTimeTickerConfiguration` > See [#24916](https://github.com/abpframework/abp/pull/24916) for more details. + +## Pro + +There are no breaking changes on the PRO side. However, if you use the Identity Pro module with Entity Framework Core, you need to make the following update: + +### Add `UserInvitations` DbSet for Identity Pro EF Core DbContexts + +If your solution uses the Identity Pro module with Entity Framework Core, and your DbContext base class implements `IIdentityProDbContext`, add the new `UserInvitations` DbSet property to your DbContext: + +```csharp +public DbSet UserInvitations { get; set; } +``` + +This is required for Identity Pro module users (it is installed by default in most/every startup templates). After adding the property, create a new EF Core migration and apply it to your database.