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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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
- 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
}
- Inicialize nossa Factory com sua connection String
var mySQLFactory = new Sharp.MySQL.ConnectionFactory(connstring);
- 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 | Versions 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.
-
.NETStandard 2.1
- Dapper (>= 2.0.123)
- MySql.Data (>= 8.0.30)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.