VOOZH about

URL: https://www.nuget.org/packages/Devart.Data.Sugar.EFCore/3.2.100.7

⇱ NuGet Gallery | Devart.Data.Sugar.EFCore 3.2.100.7




👁 Image
Devart.Data.Sugar.EFCore 3.2.100.7

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Devart.Data.Sugar.EFCore --version 3.2.100.7
 
 
NuGet\Install-Package Devart.Data.Sugar.EFCore -Version 3.2.100.7
 
 
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.Sugar.EFCore" Version="3.2.100.7" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Devart.Data.Sugar.EFCore" Version="3.2.100.7" />
 
Directory.Packages.props
<PackageReference Include="Devart.Data.Sugar.EFCore" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Devart.Data.Sugar.EFCore --version 3.2.100.7
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Devart.Data.Sugar.EFCore, 3.2.100.7"
 
 
#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.
#:package Devart.Data.Sugar.EFCore@3.2.100.7
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Devart.Data.Sugar.EFCore&version=3.2.100.7
 
Install as a Cake Addin
#tool nuget:?package=Devart.Data.Sugar.EFCore&version=3.2.100.7
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

dotConnect for SugarCRM

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

More information at dotConnect for SugarCRM.

Compatibility


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

Frameworks Version support
Entity Framework Core 7
.NET 10, 9, 8, 7, 6

More information here

Installation


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

Install-Package Devart.Data.Sugar.EFCore

License

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.

Usage


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

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

 optionsBuilder.UseSugar(@"Server=https://your_company.sugaropencloud.eu;UserId=admin;Password=mypassword;");
 } 
}

Configuration Using SugarConnection Instance

using Devart.Data.Sugar;
...

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

 var connection = new SugarConnection();
 connection.Server = "https://your_company.sugaropencloud.eu";
 connection.UserId = "admin";
 connection.Password = "mypassword";
 optionsBuilder.UseSugar(connection);
 } 
}
ASP.NET Core and Blazor

Configuration File (appsettings.json):

{
 "ConnectionStrings": {
 "DefaultConnection": "Server=https://your_company.sugaropencloud.eu;UserId=admin;Password=mypassword;"
 }
}

DbContext Configuration:

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

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

Key Features

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

Related Packages

Support Area

More Resources

Product Versions Compatible and additional computed target framework versions.
.NET net6.0 net6.0 is compatible.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  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. 
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
3.2.123.10 96 6/17/2026
3.2.123.9 93 6/17/2026
3.2.123.8 91 6/17/2026
3.2.123.7 92 6/17/2026
3.2.123 99 6/17/2026
3.2.100.10 101 5/25/2026
3.2.100.9 99 5/25/2026
3.2.100.8 100 5/25/2026
3.2.100.7 98 5/25/2026
3.2.100 102 5/25/2026
3.1.72.10 118 4/23/2026
3.1.72.9 97 4/23/2026
3.1.72.8 102 4/23/2026
3.1.72.7 100 4/23/2026
3.1.72 112 4/23/2026
3.1.35.10 112 3/6/2026
3.1.35.9 101 3/6/2026
3.1.35.8 107 3/6/2026
3.1.35.7 106 3/6/2026
3.1.35 113 3/6/2026
Loading failed