Sharp.MySQL.Migrations 0.11.3

dotnet add package Sharp.MySQL.Migrations --version 0.11.3
NuGet\Install-Package Sharp.MySQL.Migrations -Version 0.11.3
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.11.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Sharp.MySQL.Migrations --version 0.11.3
#r "nuget: Sharp.MySQL.Migrations, 0.11.3"
#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.11.3

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

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.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
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 300 11/14/2023
0.11.2 266 9/21/2023
0.11.1 127 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