FluentMigrator.Extensions.SqlServer 6.2.0
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.
Showing the top 20 packages that depend on FluentMigrator.Extensions.SqlServer.
Packages | Downloads |
---|---|
FluentMigrator.Runner.SqlServer
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.
|
27 |
FluentMigrator.Runner.SqlServer
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.
|
28 |
FluentMigrator.Runner.SqlServer
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.
|
29 |
FluentMigrator.Runner.SqlServer
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.
|
30 |
FluentMigrator.Runner.SqlServer
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.
|
32 |
FluentMigrator.Runner.SqlServer
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.
|
33 |
FluentMigrator.Runner.SqlServer
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.
|
34 |
FluentMigrator.Runner.SqlServer
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.
|
35 |
FluentMigrator.Runner.SqlServer
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.
|
36 |
FluentMigrator.Runner.SqlServer
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.
|
40 |
.NET Framework 4.8
- FluentMigrator.Abstractions (>= 6.2.0)
.NET Standard 2.0
- FluentMigrator.Abstractions (>= 6.2.0)
Version | Downloads | Last updated |
---|---|---|
6.2.0 | 2 | 11/03/2024 |
6.1.4 | 2 | 11/03/2024 |
6.1.1 | 2 | 11/03/2024 |
6.1.0 | 2 | 11/03/2024 |
6.0.0 | 2 | 11/03/2024 |
5.2.0 | 21 | 07/23/2024 |
5.1.0 | 28 | 07/23/2024 |
5.0.0 | 23 | 07/23/2024 |
3.3.2 | 26 | 07/23/2024 |
3.3.1 | 25 | 07/23/2024 |
3.3.0 | 19 | 07/23/2024 |
3.2.17 | 31 | 07/23/2024 |
3.2.16 | 35 | 07/23/2024 |
3.2.15 | 29 | 07/23/2024 |
3.2.14 | 21 | 07/23/2024 |
3.2.11 | 26 | 07/23/2024 |
3.2.10 | 24 | 07/23/2024 |
3.2.9 | 35 | 07/23/2024 |
3.2.8 | 24 | 07/23/2024 |
3.2.7 | 26 | 07/23/2024 |
3.2.6 | 29 | 07/23/2024 |
3.2.1 | 28 | 07/23/2024 |
3.2.0 | 26 | 07/23/2024 |
3.1.3 | 29 | 07/23/2024 |
3.1.2 | 34 | 07/23/2024 |
3.1.1 | 30 | 07/23/2024 |
3.1.0 | 25 | 07/23/2024 |
3.0.0 | 28 | 07/23/2024 |
2.0.7 | 25 | 07/23/2024 |
2.0.6 | 27 | 07/23/2024 |
2.0.5 | 24 | 07/23/2024 |
2.0.4 | 32 | 07/23/2024 |
2.0.3 | 28 | 07/23/2024 |
2.0.2 | 24 | 07/23/2024 |
2.0.1 | 28 | 07/23/2024 |
2.0.0 | 24 | 07/23/2024 |