DotNetBrightener.DataAccess.DataMigration 2026.0.1-preview-net10-upgrade-652

This is a prerelease version of DotNetBrightener.DataAccess.DataMigration.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package DotNetBrightener.DataAccess.DataMigration --version 2026.0.1-preview-net10-upgrade-652
                    
NuGet\Install-Package DotNetBrightener.DataAccess.DataMigration -Version 2026.0.1-preview-net10-upgrade-652
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DotNetBrightener.DataAccess.DataMigration" Version="2026.0.1-preview-net10-upgrade-652" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DotNetBrightener.DataAccess.DataMigration" Version="2026.0.1-preview-net10-upgrade-652" />
                    
Directory.Packages.props
<PackageReference Include="DotNetBrightener.DataAccess.DataMigration" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DotNetBrightener.DataAccess.DataMigration --version 2026.0.1-preview-net10-upgrade-652
                    
#r "nuget: DotNetBrightener.DataAccess.DataMigration, 2026.0.1-preview-net10-upgrade-652"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package DotNetBrightener.DataAccess.DataMigration@2026.0.1-preview-net10-upgrade-652
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DotNetBrightener.DataAccess.DataMigration&version=2026.0.1-preview-net10-upgrade-652&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=DotNetBrightener.DataAccess.DataMigration&version=2026.0.1-preview-net10-upgrade-652&prerelease
                    
Install as a Cake Tool

Data Migration Library for .NET Core Applications

© 2025 DotNet Brightener

Versions

Package Version
DotNetBrightener.DataAccess.DataMigration NuGet Version
DotNetBrightener.DataAccess.DataMigration.Mssql NuGet Version
DotNetBrightener.DataAccess.DataMigration.PostgreSql NuGet Version
dotnet-dnb-datamigration NuGet Version

Overview

Data Migration Library is a simple library to help you manage your data migration in your .NET Core application. It provides a simple way to define your migration classes and run them in your application.

Not all applications can use DACPAC for managing database schema and data changes. Especially DACPAC does not work with other databases such as MySQL, PostgreSQL, etc. This library is designed to help you manage your data migration in your application.

Installation

Install using Package Reference

dotnet add [YOUR_PROJECT_NAME] package DotNetBrightener.DataAccess.DataMigration

If you need to data migration with SQL Server, install the following package: DotNetBrightener.DataAccess.DataMigration.Mssql

dotnet add [YOUR_PROJECT_NAME] package DotNetBrightener.DataAccess.DataMigration.Mssql

For PostgreSQL, install the following package: DotNetBrightener.DataAccess.DataMigration.PostgreSql

dotnet add [YOUR_PROJECT_NAME] package DotNetBrightener.DataAccess.DataMigration.PostgreSql

Usage

Register to Service Collection
// var _connectionString = "<your_connection_string>";

// If you use SQL Server
services.EnableDataMigrations()
        .UseSqlServer(_connectionString);

// If you use PostgreSQL
services.EnableDataMigrations()
        .UseNpgsql(_connectionString);

// if you want to auto detect all migration classes
services.AutoScanDataMigrators();

// if you want to manually register migration classes
services.AddDataMigrator<MyMigration>();

Define your migration classes

using DotNetBrightener.DataAccess.DataMigration;

[DataMigration("<your_migration_id>")]
public class MyMigration : IDataMigration
{
    // You can use Dependency Injection for injecting your services
    private readonly IMyService _myService;

    public MyMigration(IMyService myService)
    {
        _myService = myService;
    }

    public async Task MigrateData()
    {
        // Your migration code here
        await _myService.DoSomethingToMigrateData();
    }
}

Roadmap

  • Initial Release
  • Add Support for SQL Server
  • Add Support for PostgreSQL
  • CLI tool for creating migration class

CLI Tool

You can now install the cli tool from Nuget: dotnet-dnb-datamigration

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on DotNetBrightener.DataAccess.DataMigration:

Package Downloads
DotNetBrightener.DataAccess.DataMigration.Mssql

Package Description

DotNetBrightener.DataAccess.DataMigration.PostgreSql

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2026.0.1-preview-net10-upgr... 142 11/25/2025
2026.0.1-preview-net10-upgr... 146 11/25/2025
2026.0.1-preview-net10-upgr... 152 11/25/2025
2026.0.1-preview-net10-upgr... 165 11/24/2025
2026.0.1-preview-net10-upgr... 173 11/24/2025
2026.0.1-preview-net10-upgr... 180 11/24/2025
2026.0.1-preview-667 111 11/27/2025
2026.0.1-preview-665 113 11/27/2025
2026.0.1-preview-664 112 11/27/2025
2026.0.1-preview-660 124 11/25/2025
2025.0.10 135 11/25/2025
2025.0.10-preview-628 400 11/20/2025
2025.0.10-preview-605 277 11/17/2025
2025.0.10-preview-602 278 11/17/2025
2025.0.10-preview-581 295 11/11/2025
2025.0.10-preview-559 204 10/29/2025
2025.0.10-preview-557 195 10/27/2025
2025.0.9 194 10/26/2025
2025.0.9-preview-553 177 10/26/2025
2025.0.9-preview-539 128 10/12/2025
2025.0.9-preview-535 180 10/8/2025
2025.0.9-preview-509 204 10/2/2025
2025.0.9-preview-508 187 10/2/2025
2025.0.9-preview-487 205 9/29/2025
2025.0.9-preview-481 196 9/29/2025
2025.0.9-preview-473 164 9/28/2025
2025.0.8 204 9/23/2025
2025.0.6 206 9/22/2025
2025.0.6-preview-455 205 9/22/2025
2025.0.6-preview-454 318 9/17/2025
2025.0.6-preview-441 167 9/14/2025
2025.0.6-preview-440 163 9/14/2025
2025.0.6-preview-406 200 9/2/2025
2025.0.6-preview-401 191 9/2/2025
2025.0.6-preview-400 195 9/2/2025
2025.0.6-preview-369 243 8/27/2025
2025.0.6-preview-368 234 8/27/2025
2025.0.6-preview-334 209 8/18/2025
2025.0.6-preview-333 137 7/27/2025
2025.0.6-preview-332 505 7/24/2025
2025.0.6-preview-331 512 7/24/2025
2025.0.6-preview-328 506 7/24/2025
2025.0.6-preview-327 359 7/21/2025
2025.0.6-preview-326 368 7/21/2025
2025.0.6-preview-325 280 7/20/2025
2025.0.6-preview-324 272 7/20/2025
2025.0.6-preview-322 277 7/20/2025
2025.0.6-preview-321 294 7/19/2025
2025.0.6-preview-320 271 7/19/2025
2025.0.6-preview-319 182 7/17/2025
2025.0.6-preview-317 183 7/17/2025
2025.0.6-preview-316 186 7/17/2025
2025.0.6-preview-315 185 7/17/2025
2025.0.6-preview-314 189 7/17/2025
2025.0.6-preview-313 184 7/17/2025
2025.0.6-preview-312 189 7/16/2025
2025.0.5 202 7/10/2025
2025.0.5-preview-307 117 7/5/2025
2025.0.4 123 7/5/2025
2025.0.4-preview-305 132 7/4/2025
2025.0.4-preview-304 188 7/1/2025
2025.0.4-preview-299 160 5/31/2025
2025.0.4-preview-298 139 5/30/2025
2025.0.4-preview-296 189 5/30/2025
2025.0.4-preview-295 194 5/29/2025
2025.0.4-preview-293 196 5/26/2025
2025.0.4-preview-292 196 5/26/2025
2025.0.3 183 2/10/2025
2025.0.3-preview-288 163 2/10/2025
2025.0.2 173 1/21/2025
2025.0.2-preview-278 145 1/21/2025
2025.0.2-preview-277 152 12/16/2024
2025.0.1-rc-243301701 422 11/25/2024
2024.0.14.6 172 11/25/2024
2024.0.14.6-rc-243031001 248 10/29/2024
2024.0.14.6-rc-243030701 154 10/29/2024
2024.0.14.6-rc-242840501 153 10/10/2024
2024.0.14.6-rc-242820305 137 10/8/2024
2024.0.14.6-rc-242771401 246 10/3/2024
2024.0.14.6-rc-242770501 155 10/3/2024
2024.0.14.6-rc-242770201 147 10/3/2024
2024.0.14.6-rc-242761801 154 10/2/2024
2024.0.14.6-rc-242761601 154 10/2/2024
2024.0.14.6-rc-242761501 156 10/2/2024
2024.0.14.6-rc-242761401 151 10/2/2024
2024.0.14.6-rc-242760701 174 10/2/2024
2024.0.14.6-rc-242751002 156 10/1/2024
2024.0.14.6-rc-242750901 171 10/1/2024
2024.0.14.6-rc-242750502 157 10/1/2024
2024.0.14.6-rc-242750201 164 10/1/2024
2024.0.14.6-rc-242741501 143 9/30/2024
2024.0.14.6-rc-242730701 178 9/29/2024
2024.0.14.6-preview-2730501 133 9/29/2024
2024.0.14.6-preview-2701501 190 9/26/2024
2024.0.14.6-preview-2620901 212 9/18/2024
2024.0.14.6-preview-2570701 150 9/13/2024
2024.0.14.6-preview-2510703 218 9/7/2024
2024.0.14.6-preview-2480501 183 9/4/2024
2024.0.14.6-preview-2430401 190 8/30/2024
2024.0.14.6-preview-242730701 151 9/29/2024
2024.0.14.6-preview-2421703 158 8/29/2024
2024.0.14.6-preview-2421701 152 8/29/2024
2024.0.14.6-preview-2420901 155 8/29/2024
2024.0.14.6-preview-2390101 162 8/26/2024
2024.0.14.6-preview-2381603 185 8/25/2024
2024.0.14.6-preview-2341601 207 8/21/2024
2024.0.14.6-preview-2321602 201 8/20/2024
2024.0.14.6-preview-2190801 225 8/6/2024
2024.0.14.6-preview-2041501 160 7/22/2024
2024.0.14.6-preview-1920603 212 7/10/2024
2024.0.14.6-preview-1920301 184 7/10/2024
2024.0.14.6-preview-1911302 170 7/9/2024
2024.0.14.6-preview-1901001 176 7/8/2024
2024.0.14.6-preview-1900901 163 7/8/2024
2024.0.14.6-preview-1900801 171 7/8/2024
2024.0.14.6-preview-1860304 173 7/4/2024
2024.0.14.5 225 7/1/2024
2024.0.14.5-preview-1811601 170 6/29/2024
2024.0.14.5-preview-1810501 184 6/29/2024
2024.0.14.5-preview-180132 201 6/28/2024
2024.0.14.5-preview-180131 171 6/28/2024
2024.0.14.5-preview-180121 161 6/28/2024
2024.0.14.4 192 6/27/2024
2024.0.14.4-preview-8 168 6/27/2024
2024.0.14.4-preview-7 179 6/27/2024
2024.0.14.3 189 6/21/2024
2024.0.14.1 183 6/6/2024
2024.0.14.1-preview 167 6/6/2024
2024.0.14-preview-1 167 6/6/2024
2024.0.13.8-preview 171 6/6/2024
2024.0.13.1-preview-0146 165 6/6/2024
2024.0.13-preview-1 151 6/6/2024
2024.0.12.15803-preview-03 168 6/6/2024
2024.0.12.15608 187 6/4/2024
2024.0.12.15515 240 6/3/2024
2024.0.12.15220 177 5/31/2024
2024.0.12.15220-alpha31-240... 147 5/31/2024
2024.0.12.14911 213 5/28/2024
2024.0.12.14910-alpha28-240... 162 5/28/2024
2024.0.12.14823 199 5/27/2024
2024.0.12.14522-alpha7-2405... 179 5/24/2024
2024.0.12.14514-alpha6-2405... 159 5/24/2024
2024.0.12.14511 204 5/24/2024
2024.0.12.14314 225 5/22/2024
2024.0.12.14114 224 5/20/2024
2024.0.12.12815 227 5/7/2024
2024.0.12.12814 178 5/7/2024
2024.0.12.12721 204 5/6/2024
2024.0.12.12702 187 5/5/2024
2024.0.12.12622 225 5/5/2024
2024.0.12.12514 206 5/4/2024
2024.0.12.12512 192 5/4/2024
2024.0.12.12510 197 5/4/2024
2024.0.12.12420 162 5/3/2024
2024.0.12.12319 168 5/2/2024
2024.0.12.12319-rc-2405021801 139 5/2/2024
2024.0.12.12318 160 5/2/2024