Devart.Data.Bigcommerce.EFCore 2.3.191.9

Prefix Reserved
dotnet add package Devart.Data.Bigcommerce.EFCore --version 2.3.191.9                
NuGet\Install-Package Devart.Data.Bigcommerce.EFCore -Version 2.3.191.9                
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.Bigcommerce.EFCore" Version="2.3.191.9" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Devart.Data.Bigcommerce.EFCore --version 2.3.191.9                
#r "nuget: Devart.Data.Bigcommerce.EFCore, 2.3.191.9"                
#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.Bigcommerce.EFCore as a Cake Addin
#addin nuget:?package=Devart.Data.Bigcommerce.EFCore&version=2.3.191.9

// Install Devart.Data.Bigcommerce.EFCore as a Cake Tool
#tool nuget:?package=Devart.Data.Bigcommerce.EFCore&version=2.3.191.9                

dotConnect for BigCommerce

dotConnect for BigCommerce is an ADO.NET provider for working with BigCommerce data through the standard ADO.NET or Entity Framework interfaces. It allows you to easily integrate BigCommerce data into your .NET applications, and integrate BigCommerce 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: BigcommerceConnection, BigcommerceCommand, BigcommerceDataAdapter, BigcommerceDataReader, BigcommerceParameter, etc. This allows you quickly get started with it and eliminates the need to study any BigCommerce data access specificities.

More information at dotConnect for BigCommerce.

Compatibility


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

Frameworks Version support
Entity Framework Core 9
.NET 9, 8

More information here

Installation


For projects, using Entity Framework Core 9 with BigCommerce, install this package. Execute the following command in the Package Manager Console:

Install-Package Devart.Data.Bigcommerce.EFCore

License

See pricing options for ordering.

To activate your license, please download dotConnect for BigCommerce from our website. This installer generates the trial key files required for using this package on a trial basis.

Usage


This snippet directly configures a BigcommerceConnection class for an Entity Framework Core DbContext using a connection string.

public class MyDbContext : DbContext {
 
  protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) {

     optionsBuilder.UseBigcommerce(@"Server=https://bigcommerce-store.mybigcommerce.com/api/v2/;UserId=User;AuthenticationToken=qweASDzcx1234567890rtyuiqweASDzcx1234567;");
  } 
}

Configuration Using BigcommerceConnection Instance

using Devart.Data.Bigcommerce;
...

public class MyDbContext : DbContext {
 
  protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) {

     var connection = new BigcommerceConnection();
     connection.Server = "https://bigcommerce-store.mybigcommerce.com/api/v2/";
     connection.UserId = "User";
     connection.AuthenticationToken = "qweASDzcx1234567890rtyuiqweASDzcx1234567";
     optionsBuilder.UseBigcommerce(connection);
  } 
}
ASP.NET Core and Blazor

Configuration File (appsettings.json):

{
  "ConnectionStrings": {
    "DefaultConnection": "Server=https://bigcommerce-store.mybigcommerce.com/api/v2/;UserId=User;AuthenticationToken=qweASDzcx1234567890rtyuiqweASDzcx1234567;"
   }
}

DbContext Configuration:

public class MyDbContext : DbContext {
 
  protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) {

    IConfigurationBuilder builder = new ConfigurationBuilder().AddJsonFile("appsettings.json");
    IConfiguration configuration = builder.Build();
    optionsBuilder.UseBigcommerce(configuration.GetConnectionString("DefaultConnection"));
  } 
}

Key Features

  • Easy Connection: Allows your .NET application to work with BigCommerce data.
  • SQL Engine: No need to study and use complex BigCommerce API, just use familiar SQL statements. You may use complex JOINs, WHERE conditions, etc. - all the SQL benefits, not available with BigCommerce API.
  • Support and Updates: Enjoy dedicated support team for prompt issue resolution and regular updates to keep your software running smoothly and securely.

Support Area

More Resources

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows 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
2.3.191.9 60 1/15/2025
2.3.191.8 57 1/15/2025
2.3.191.7 59 1/15/2025
2.3.191 59 1/15/2025
2.3.190.9 86 12/27/2024
2.3.190.8 75 12/27/2024
2.3.190.7 76 12/27/2024
2.3.190 81 12/27/2024
2.2.104.8 102 11/8/2024
2.2.104.7 91 11/8/2024
2.2.104 90 11/8/2024
2.2.21.8 117 6/6/2024
2.2.21.7 108 6/6/2024
2.2.21 116 6/6/2024
2.2.20.8 113 5/30/2024
2.2.20.7 114 5/30/2024
2.2.20 121 5/30/2024
2.1.10.8 160 1/18/2024
2.1.10.7 105 1/18/2024
2.1.10 111 1/18/2024
2.0.0.7 223 11/17/2023
2.0.0 136 11/17/2023