Devart.Data.MySql 9.3.21

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Devart.Data.MySql --version 9.3.21
NuGet\Install-Package Devart.Data.MySql -Version 9.3.21
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="Devart.Data.MySql" Version="9.3.21" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Devart.Data.MySql --version 9.3.21
#r "nuget: Devart.Data.MySql, 9.3.21"
#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 Devart.Data.MySql as a Cake Addin
#addin nuget:?package=Devart.Data.MySql&version=9.3.21

// Install Devart.Data.MySql as a Cake Tool
#tool nuget:?package=Devart.Data.MySql&version=9.3.21

dotConnect for MySQL

dotConnect for MySQL is a high-performance ORM enabled data provider for MySQL 8.0+ including Embedded servers (starting with 4.1), MariaDB, Amazon RDS, Amazon Aurora, Azure MySQL, Percona that builds on ADO.NET technology.

The provider works with .NET Frameworks 4.6+, .NET Core 1.0+, .NET 5+.

It supports a wide range of MySQL-specific features, such as secure SSL and SSH connections, compression protocol, HTTP tunneling and others. Package provides advanced Visual Studio integration and convenient visual component editors to simplify component tweaking.

More information at dotConnect for MySQL.

Installation


For projects, using general ADO.NET functionality of dotConnect for MySQL, you need to install the Devart.Data.MySql package. Execute the following command in the Package Manager Console:

Install-Package Devart.Data.MySql

For projects, using Entity Framework Core 1, 3, 5, 6, 7, 8 with MySQL, install the Devart.Data.MySql.EFCore package.

For projects that require integration with Entity Framework 6.4 (EF6), use the Devart.Data.MySql.EF6 package.

To activate your license, please download dotConnect for MySQL from our website.

Compatibility


The following table show which version of this package to use with which version of frameworks.

Frameworks Version support
.NET 8, 7, 6, 5
.NET Core 3, 2, 1
.NET Framework 4.8, 4.7, 4.6

More information here

Usage


In this example, a new instance of the MySqlConnection class (part of the Devart.Data.MySql namespace) is created.

using Devart.Data.MySql;
...
MySqlConnection сonnection = new MySqlConnection();
сonnection.Host = "127.0.0.1";
сonnection.Port = 3306;
сonnection.UserId = "root";
сonnection.Password = "mypassword";

This snippet simplifies the connection setup by directly assigning a connection string to the ConnectionString property of the MySqlConnection object

сonnection.ConnectionString = "User Id=root;Password=mypassword;Host=127.0.0.1;Port=3306;";
ASP.NET Core and Blazor

Configuration File Snippet (appsettings.json):

{
  "ConnectionStrings": {
    "DefaultConnection": "User Id=root;Password=mypassword;Host=127.0.0.1;Port=3306;"
   }
}

Dependency Injection of IConfiguration:

private readonly IConfiguration configuration;

public YourController(IConfiguration config) 
{
    configuration = config;
}

Retrieving a Connection String:

var connectionString = configuration.GetConnectionString("DefaultConnection");
var connection = new MySqlConnection(connectionString);

For more information about secure connections using SSL or SSH connections read at our documentation.

Key Features

  • Direct Mode: Allows your application to work with MySQL directly, without involving MySQL client library.
  • ASP.NET Core: Supports ASP.NET Core Identity.
  • Performance: Uses many MySQL-specific performance features & optimizations to ensure the highest performance.
  • Monitoring: Allows per-component tracing of database events with a free dbMonitor application.
  • Security: Supports various encryption ciphers, SSL and SSH connections, etc.

License

dotConnect for MySQL is available in several editions. See pricing options for ordering.

Support Area

Documentation Request form Feedback page Product history

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 netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.3 is compatible.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 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 (10)

Showing the top 5 NuGet packages that depend on Devart.Data.MySql:

Package Downloads
Devart.Data.MySql.EFCore The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

ADO.NET data provider with advanced ORM support, such as Entity Framework and EF Core for MySQL, MariaDB, Amazon RDS, Amazon Aurora, Azure for MySQL, Percona.

Devart.Data.MySql.Linq The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

dotConnect for MySQL is an enhanced database connectivity solution built over ADO.NET architecture and a development framework with advanced support for ORMs, such as Entity Framework and LinqConnect and offers a complete solution for developing DB-related applications and web sites. It introduces new approaches for designing a data access layer and boosts the productivity of database application development. It is the best alternative to Connector/NET for working with MySQL data. dotConnect for MySQL supports MySQL, including Embedded servers, MariaDB, Percona, and Amazon RDS Aurora. This package contains the .NET Standard/.NET Core compatible assemblies with LinqConnect-related functionality of dotConnect for MySQL. LinqConnect (LINQ to MySQL) is a fast ORM solution, having a LINQ to SQL-compatible interface, but also providing its own advanced features. This package contains only runtime features of dotConnect for MySQL. dotConnect for MySQL is also provided as an installation package (exe), which installs runtime assemblies for Full .NET Framework and a set of design-time tools, integrated into Visual Studio - Server Explorer integration, DataSet tools, Windows Forms components with powerful design-time, etc. It also includes visual ORM designer for Entity Framework, Entity Framework Core, and LinqConnect ORM models. Besides, this installer generates the trial key files required for using this package on a trial basis. You can download it at www.devart.com.

Devart.Data.MySql.EF6 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

dotConnect for MySQL is an enhanced database connectivity solution built over ADO.NET architecture and a development framework with advanced support for ORMs, such as Entity Framework and EF Core, and offers a complete solution for developing DB-related applications and web sites.

NewenNetworks.Database.MySql

NewenNetworks Standard SDK

GenerativeObjects.Practices

Common utilities for Generative Objects applications

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Devart.Data.MySql:

Repository Stars
MightyOrm/Mighty
A new, small, dynamic micro-ORM. Highly compatible with Massive, but with many essential new features.
Version Downloads Last updated
9.3.21 378 6/6/2024
9.3.20 468 5/30/2024
9.3.10 5,872 1/18/2024
9.2.0 6,535 11/17/2023
9.1.151 17,141 6/7/2023
9.1.134 19,288 3/4/2023
9.0.0 124,315 7/1/2022
8.21.2066 100,447 1/26/2022
8.20.2042 69,949 12/21/2021
8.19.2014 9,966 11/9/2021
8.19.2001 95,253 10/21/2021
8.19.1985 5,930 9/28/2021
8.19.1944 74,658 7/30/2021
8.19.1930 41,792 7/8/2021
8.19.1905 105,509 6/3/2021
8.19.1866 87,183 4/9/2021
8.19.1860 7,052 4/1/2021
8.19.1836 9,152 2/18/2021
8.19.1812 13,286 1/14/2021
8.19.1792 9,236 12/17/2020
8.19.1782 7,484 12/3/2020
8.18.1759 37,318 10/29/2020
8.18.1739 13,488 10/1/2020
8.18.1730 7,803 9/17/2020
8.17.1696 9,368 7/30/2020
8.17.1686 8,574 7/16/2020
8.17.1666 8,015 6/17/2020
8.17.1612 46,818 4/2/2020
8.17.1583 32,522 2/20/2020
8.16.1541 10,902 12/23/2019
8.15.1519 90,961 11/21/2019
8.15.1504 7,932 10/31/2019
8.15.1499 5,316 10/24/2019
8.14.1470 6,997 9/13/2019
8.13.1437 9,655 7/25/2019
8.13.1422 97,904 7/4/2019
8.13.1402 8,803 6/6/2019
8.13.1366 41,163 4/12/2019
8.12.1357 6,488 3/28/2019
8.12.1328 8,474 2/14/2019
8.12.1307 12,896 1/10/2019
8.12.1278 7,305 11/29/2018
8.12.1253 12,617 10/25/2018
8.12.1229 13,881 9/20/2018
8.12.1216 5,744 8/31/2018
8.12.1202 7,663 8/10/2018
8.12.1190 9,789 7/19/2018
8.11.1172 6,297 6/22/2018
8.10.1152 6,114 5/25/2018
8.10.1134 6,103 4/27/2018
8.10.1115 6,140 3/30/2018
8.10.1086 6,704 2/15/2018
8.10.1061 7,687 1/11/2018
8.10.1031 5,770 11/23/2017
8.10.1013 5,415 10/30/2017
8.9.980 6,773 9/7/2017
8.9.958 6,623 8/4/2017
8.9.946 5,478 7/14/2017
8.9.931 5,361 6/23/2017
8.9.912 10,740 5/25/2017