VOOZH about

URL: https://www.nuget.org/packages/FluentMigrator.Runner.SqlServer/

⇱ NuGet Gallery | FluentMigrator.Runner.SqlServer 8.0.1




👁 Image
FluentMigrator.Runner.SqlServer 8.0.1

Prefix Reserved

Requires NuGet 3.5 or higher.

dotnet add package FluentMigrator.Runner.SqlServer --version 8.0.1
 
 
NuGet\Install-Package FluentMigrator.Runner.SqlServer -Version 8.0.1
 
 
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="FluentMigrator.Runner.SqlServer" Version="8.0.1" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FluentMigrator.Runner.SqlServer" Version="8.0.1" />
 
Directory.Packages.props
<PackageReference Include="FluentMigrator.Runner.SqlServer" />
 
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 FluentMigrator.Runner.SqlServer --version 8.0.1
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: FluentMigrator.Runner.SqlServer, 8.0.1"
 
 
#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 FluentMigrator.Runner.SqlServer@8.0.1
 
 
#: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=FluentMigrator.Runner.SqlServer&version=8.0.1
 
Install as a Cake Addin
#tool nuget:?package=FluentMigrator.Runner.SqlServer&version=8.0.1
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

FluentMigrator

FluentMigrator is a an open-source .NET library that allows you to manage and version database schema changes using a code-first approach. With FluentMigrator, you can define database migrations as code rather than maintaining SQL scripts or using other tools.

Some key features of FluentMigrator include:

  • Code-based Migrations: You define database migrations as C# or VB.NET classes, making it easier to version control and maintain your schema changes.
  • Fluent Interface: FluentMigrator provides a fluent interface for defining database objects like tables, columns, indexes, and constraints, making the code more readable and expressive.
  • Cross-platform: FluentMigrator supports multiple databases, including SQL Server, PostgreSQL, MySQL, Oracle, and SQLite.
  • Rollback Support: FluentMigrator allows you to roll back migrations, making it easier to undo changes or revert to a previous database state.
  • Extensibility: You can create your own custom migrations, conventions, and processors to extend FluentMigrator's functionality.

Getting Started

For a brief overview on getting started with FluentMigrator, please see the documentation links here:

Installation

You can install FluentMigrator via NuGet:

Install-Package FluentMigrator

Usage

FluentMigrator example migration and usage:

[Migration(202401011200)]
public class CreatePersonTable : Migration
{
 public override void Up()
 {
 Create.Table("People")
 .WithColumn("Id").AsGuid().PrimaryKey()
 .WithColumn("Name").AsString(100).NotNullable()
 .WithColumn("Email").AsString(200).Nullable();
 }

 public override void Down()
 {
 Delete.Table("People");
 }
}

For more detailed documentation and examples, please refer to [link to your comprehensive documentation].

Feedback and Contributing

We welcome your feedback, bug reports, and contributions to FluentMigrator.

  • To report a bug or request a feature, please open an issue on our GitHub repository.

If you'd like to contribute to the project, please follow our contributing guidelines.

License

FluentMigrator is released under the Apache license. See the LICENSE file for more details.

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

NuGet packages (22)

Showing the top 5 NuGet packages that depend on FluentMigrator.Runner.SqlServer:

Package Downloads
FluentMigrator.Runner

FluentMigrator is a database migration framework for .NET written in C#. The basic idea is that you can create migrations which are simply classes that derive from the Migration base class and have a Migration attribute with a unique version number attached to them. Upon executing FluentMigrator, you tell it which version to migrate to and it will run all necessary migrations in order to bring your database up to that version. In addition to forward migration support, FluentMigrator also supports different ways to execute the migrations along with selective migrations called profiles and executing arbitrary SQL.

FluentMigrator.Runner.SqlServerCe

FluentMigrator is a database migration framework for .NET written in C#. The basic idea is that you can create migrations which are simply classes that derive from the Migration base class and have a Migration attribute with a unique version number attached to them. Upon executing FluentMigrator, you tell it which version to migrate to and it will run all necessary migrations in order to bring your database up to that version. In addition to forward migration support, FluentMigrator also supports different ways to execute the migrations along with selective migrations called profiles and executing arbitrary SQL.

Ewl

The Enterprise Web Library (EWL), together with its tailored infrastructure platform, is a highly opinionated foundation for web-based enterprise software.

Webinex.Migrations

Easy to use Fluent Migrations wrapper

Fanzoo.Kernel

An opinionated framework for building scalable web applications.

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on FluentMigrator.Runner.SqlServer:

Repository Stars
serenity-is/Serenity
Business Apps Made Simple with Asp.Net Core MVC / TypeScript
BrighterCommand/Brighter
A framework for building messaging apps with .NET and C#.
smartstore/Smartstore
A modular, scalable and ultra-fast open-source all-in-one eCommerce platform built on ASP.NET Core 10
Version Downloads Last Updated
8.0.1 782,868 1/21/2026
8.0.0 78,781 1/14/2026
7.2.0 414,522 12/2/2025
7.1.0 2,071,707 3/29/2025
7.0.0 87,586 3/19/2025
6.2.0 3,586,735 10/4/2024
6.1.4 16,211 10/2/2024
6.1.1 18,382 10/2/2024
6.1.0 3,605 10/2/2024
6.0.0 63,279 9/25/2024
5.2.0 3,873,748 3/28/2024
5.1.0 548,421 2/19/2024
5.0.0 973,356 12/10/2023
3.3.2 9,478,132 1/14/2022
3.3.1 1,686,070 9/21/2021
3.3.0 444,216 8/26/2021
3.2.17 1,161,055 6/17/2021
3.2.16 562,390 5/19/2021
3.2.15 1,389,554 2/19/2021
Loading failed

Latest changes and detailed release notes are available on GitHub Releases: https://github.com/fluentmigrator/fluentmigrator/releases