Sharp.MySQL.Migrations 0.9.4.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Sharp.MySQL.Migrations --version 0.9.4.1
NuGet\Install-Package Sharp.MySQL.Migrations -Version 0.9.4.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="Sharp.MySQL.Migrations" Version="0.9.4.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Sharp.MySQL.Migrations --version 0.9.4.1
#r "nuget: Sharp.MySQL.Migrations, 0.9.4.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.
// Install Sharp.MySQL.Migrations as a Cake Addin
#addin nuget:?package=Sharp.MySQL.Migrations&version=0.9.4.1

// Install Sharp.MySQL.Migrations as a Cake Tool
#tool nuget:?package=Sharp.MySQL.Migrations&version=0.9.4.1

NuGet

Migration - MySQL

Biblioteca simplificada para Migration em bancos de dados MySql/MariaDB

[Documentação em Progresso]

Objetivo: Criar tabelas e colunas à partir de uma Model

  1. Crie uma model para representar a tabela
public class Pessoas
{
    [PrimaryKey]
    [AutoIncrement]
    [TypeFieldBD(TypeField.INT, NotNull = true)]
    public int Codigo { get; set; } //INT AI PK NN

    [TypeFieldBD(TypeField.NVARCHAR, 100, NotNull = true)]
    public string Nome { get; set; } //NVARCHAR(100) NN
}
  1. Inicialize nossa Factory com sua connection String
var mySQLFactory = new Sharp.MySQL.ConnectionFactory(connstring);
  1. Crie um Migration com a Factory, adicione models e execute a migração
var migration = new Sharp.MySQL.Migration(mySQLFactory);
// Add or change tables
var result = migration.Add<Pessoas>()
                      .Migrate();
  • A tabela será criada no banco
  • Caso faltem colunas, as novas colunas são criadas
  • Utlize o Result para verificar se houveram modificações no banco

Veja o projeto de exemplo em: MigrationMySQL/RunStuff

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

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.11.3 291 11/14/2023
0.11.2 264 9/21/2023
0.11.1 125 9/20/2023
0.10.4 406 8/1/2022
0.10.3 453 1/13/2022
0.10.1 418 1/13/2022
0.10.0 423 1/10/2022
0.9.4.1 237 12/29/2021
0.9.4 250 12/29/2021
0.9.3 269 12/14/2021
0.9.2 491 12/9/2021
0.9.1 294 12/6/2021

Pareado com o commit bdfd538