Connect Mailchimp Data With .NET Application Easily
dotConnect for Mailchimp makes it simple to create .NET applications in C#, VB, or other languages,
working with Mailchimp data. It offers standard ADO.NET interface, and thus it's easy to master it. It's
powerful design-time editors together with seamless Visual Studio integration allow you to work with
Mailchimp data with less efforts and less code writing. See how easy it is with dotConnect for
Mailchimp.
Connecting to Mailchimp from Server Explorer
To create a Server Explorer connection, you just need to:
- Click Connect to Database on the Server Explorer toolbar
- Change Data Source to Mailchimp Data Source
- Specify the login url to the data source, your Mailchimp user id and password
That's all, now you can work with Mailchimp data right in Visual Studio - select data from
Mailchimp entities and edit it.
Mailchimp Data Binding
- Build your data access layer without writing code manually
- Configure dotConnect for Mailchimp components in powerful design-time editors
- Bind data grids and other controls to Mailchimp data just by configuring the smart tags
- Work with Mailchimp data just like with a database
How it Works
Advanced Queries
Simple Queries
More complex queries are split in parts, and parts of query are executed against
Mailchimp
Simple queries are directly compiled to Mailchimp calls
Our local SQL engine processes the results and applies advanced SQL features, used in
the query
These API calls are executed on Mailchimp side providing the best
performance
Returned data are passed to the application
dotConnect for Mailchimp offers powerful local SQL engine for SELECT statement
execution. It executes SQL statements in the following way:
Simple SQL statements are translated to Mailchimp API calls and executed on the
Mailchimp side directly. However, dotConnect for Mailchimp also supports more
advanced SQL features, such as SQL functions or expressions, complex WHERE conditions,
joins, etc.
If you use these more advanced SQL features, dotConnect for Mailchimp queries all
the data from the objects that participate in the query, and executes the statement locally.
How to Start
dotConnect for Mailchimp has a detailed documentation that can help you quickly get started with our
product. Read our tutorials first:
Connecting to Mailchimp
This tutorial describes how to connect to Mailchimp either from Visual Studio Server Explorer or
from application code via MailchimpConnection.
Read Tutorial
Retrieving Mailchimp Data
This tutorial describes how to get Mailchimp data with MailchimpCommand and MailchimpDataReader
or with MailchimpDataAdapter.
Read Tutorial
Updating Mailchimp Data
This tutorial describes how to manage Mailchimp data with SQL and the MailchimpCommand class or
with the MailchimpDataAdapter class.
Read Tutorial