Devart.Data.ZohoDesk.EFCore 1.1.290.9

Prefix Reserved
dotnet add package Devart.Data.ZohoDesk.EFCore --version 1.1.290.9
                    
NuGet\Install-Package Devart.Data.ZohoDesk.EFCore -Version 1.1.290.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.ZohoDesk.EFCore" Version="1.1.290.9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Devart.Data.ZohoDesk.EFCore" Version="1.1.290.9" />
                    
Directory.Packages.props
<PackageReference Include="Devart.Data.ZohoDesk.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.ZohoDesk.EFCore --version 1.1.290.9
                    
#r "nuget: Devart.Data.ZohoDesk.EFCore, 1.1.290.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.
#:package Devart.Data.ZohoDesk.EFCore@1.1.290.9
                    
#: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.ZohoDesk.EFCore&version=1.1.290.9
                    
Install as a Cake Addin
#tool nuget:?package=Devart.Data.ZohoDesk.EFCore&version=1.1.290.9
                    
Install as a Cake Tool

dotConnect for Zoho Desk

dotConnect for Zoho Desk is an ADO.NET provider for working with Zoho Desk data through the standard ADO.NET or Entity Framework interfaces. It allows you to easily integrate Zoho Desk data into your .NET applications, and integrate Zoho Desk 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: ZohoDeskConnection, ZohoDeskCommand, ZohoDeskDataAdapter, ZohoDeskDataReader, ZohoDeskParameter, etc. This allows you quickly get started with it and eliminates the need to study any Zoho Desk data access specificities.

More information at dotConnect for Zoho Desk.

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 Zoho Desk, install this package. Execute the following command in the Package Manager Console:

Install-Package Devart.Data.ZohoDesk.EFCore

License

See pricing options for ordering.

The NuGet package initiates a 30-day free trial automatically, so no additional action is required.

Usage


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

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

     optionsBuilder.UseZohoDesk(@"RefreshToken=************************");
  } 
}

Configuration Using ZohoDeskConnection Instance

using Devart.Data.ZohoDesk;
...

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

     var connection = new ZohoDeskConnection();
     connection.RefreshToken = "************************";
     optionsBuilder.UseZohoDesk(connection);
  } 
}
ASP.NET Core and Blazor

Configuration File (appsettings.json):

{
  "ConnectionStrings": {
    "DefaultConnection": "RefreshToken=************************"
   }
}

DbContext Configuration:

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

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

Key Features

  • Easy Connection: Allows your .NET application to work with Zoho Desk data.
  • SQL Engine: No need to study and use complex Zoho Desk API, just use familiar SQL statements. You may use complex JOINs, WHERE conditions, etc. - all the SQL benefits, not available with Zoho Desk 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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  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
1.1.290.9 119 7/30/2025
1.1.290.8 113 7/30/2025
1.1.290.7 112 7/30/2025
1.1.290 120 7/30/2025
1.1.235.9 153 4/25/2025
1.1.235.8 146 4/25/2025
1.1.235.7 133 4/25/2025
1.1.235 148 4/25/2025
1.1.193.9 122 2/11/2025
1.1.193.8 118 2/11/2025
1.1.193.7 123 2/11/2025
1.1.193 118 2/11/2025
1.1.191.9 104 1/15/2025
1.1.191.8 89 1/15/2025
1.1.191.7 105 1/15/2025
1.1.191 98 1/15/2025
1.1.190.9 108 12/27/2024
1.1.190.8 105 12/27/2024
1.1.190.7 107 12/27/2024
1.1.190 133 12/27/2024
1.0.104.8 119 11/8/2024
1.0.104.7 119 11/8/2024
1.0.104 118 11/8/2024
1.0.21.8 144 6/6/2024
1.0.21.7 133 6/6/2024
1.0.21 136 6/6/2024
1.0.20.8 127 5/30/2024
1.0.20.7 131 5/30/2024
1.0.20 132 5/30/2024