![]() |
VOOZH | about |
dotnet add package Devart.Data.MailChimp.EFCore --version 3.2.123.10
NuGet\Install-Package Devart.Data.MailChimp.EFCore -Version 3.2.123.10
<PackageReference Include="Devart.Data.MailChimp.EFCore" Version="3.2.123.10" />
<PackageVersion Include="Devart.Data.MailChimp.EFCore" Version="3.2.123.10" />Directory.Packages.props
<PackageReference Include="Devart.Data.MailChimp.EFCore" />Project file
paket add Devart.Data.MailChimp.EFCore --version 3.2.123.10
#r "nuget: Devart.Data.MailChimp.EFCore, 3.2.123.10"
#:package Devart.Data.MailChimp.EFCore@3.2.123.10
#addin nuget:?package=Devart.Data.MailChimp.EFCore&version=3.2.123.10Install as a Cake Addin
#tool nuget:?package=Devart.Data.MailChimp.EFCore&version=3.2.123.10Install as a Cake Tool
dotConnect for MailChimp is an ADO.NET provider for working with MailChimp data through the standard ADO.NET or Entity Framework interfaces. It allows you to easily integrate MailChimp data into your .NET applications, and integrate MailChimp services with widely used data-oriented technologies.
The provider works with .NET Frameworks 4.5+, .NET Core 2.0+, .NET 5+. The product is compatible with ADO.NET Entity Framework (EF) Core.
It has the same standard ADO.NET classes as other standard ADO.NET providers: MailChimpConnection, MailChimpCommand, MailChimpDataAdapter, MailChimpDataReader, MailChimpParameter, etc. This allows you quickly get started with it and eliminates the need to study any MailChimp data access specificities.
More information at dotConnect for MailChimp.
The following table show which version of this package to use with which version of frameworks.
| Frameworks | Version support |
|---|---|
| Entity Framework Core | 10 |
| .NET | 10 |
More information here
For projects, using Entity Framework Core 10 with MailChimp, install this package. Execute the following command in the Package Manager Console:
Install-Package Devart.Data.MailChimp.EFCore
See pricing options for ordering.
The NuGet package initiates the retrieval of an activation key from the Devart website. This key is required to activate the product for a free trial.
This snippet directly configures a MailChimpConnection class for an Entity Framework Core DbContext using a connection string.
public class MyDbContext : DbContext {
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) {
optionsBuilder.UseMailChimp(@"ApiKey=**********;");
}
}
Configuration Using MailChimpConnection Instance
using Devart.Data.MailChimp;
...
public class MyDbContext : DbContext {
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) {
var connection = new MailChimpConnection();
connection.ApiKey = "**********";
optionsBuilder.UseMailChimp(connection);
}
}
Configuration File (appsettings.json):
{
"ConnectionStrings": {
"DefaultConnection": "ApiKey=**********;"
}
}
DbContext Configuration:
public class MyDbContext : DbContext {
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) {
IConfigurationBuilder builder = new ConfigurationBuilder().AddJsonFile("appsettings.json");
IConfiguration configuration = builder.Build();
optionsBuilder.UseMailChimp(configuration.GetConnectionString("DefaultConnection"));
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 3.2.123.10 | 18 | 6/17/2026 |
| 3.2.123.9 | 18 | 6/17/2026 |
| 3.2.123.8 | 18 | 6/17/2026 |
| 3.2.123.7 | 18 | 6/17/2026 |
| 3.2.123 | 29 | 6/17/2026 |
| 3.2.100.10 | 94 | 5/25/2026 |
| 3.2.100.9 | 87 | 5/25/2026 |
| 3.2.100.8 | 91 | 5/25/2026 |
| 3.2.100.7 | 87 | 5/25/2026 |
| 3.2.100 | 96 | 5/25/2026 |
| 3.1.72.10 | 121 | 4/23/2026 |
| 3.1.72.9 | 100 | 4/23/2026 |
| 3.1.72.8 | 101 | 4/23/2026 |
| 3.1.72.7 | 108 | 4/23/2026 |
| 3.1.72 | 119 | 4/23/2026 |
| 3.1.35.10 | 118 | 3/6/2026 |
| 3.1.35.9 | 103 | 3/6/2026 |
| 3.1.35.8 | 115 | 3/6/2026 |
| 3.1.35.7 | 111 | 3/6/2026 |
| 3.1.35 | 135 | 3/6/2026 |