SankhyaAPI.Client 4.0.0

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

👜 SankhyaAPI.Client

GitHub issues GitHub forks GitHub stars GitHub license GitHub Languages Nuget

Projeto de integração com ERP Sankhya para operação de CRUD!

📑 Índice

🚀 Sobre

Este projeto tem como objetivo disponibilizar, de maneira mais sucinta, métodos mais utilizados para manipulações e retornos de dados. Utilizando a própria API do Sankhya disponível aqui, o projeto abstrai os métodos para o usuário.

📦 Instalação

  1. Na raiz do seu projeto, use o seguinte comando:
    dotnet add package SankhyaAPI.Client --version x.y.z
    

⚙ Configuração

Este pacote foi pensado para uso com injeção de dependência.

  1. Configure o SankhyaClientSettings:

    SankhyaClientSettings sankhyaSettings = new SankhyaClientSettings();
    sankhyaSettings.BaseUrl = "https://seusistema.sankhya.com";
    sankhyaSettings.Usuario = "usuario";
    sankhyaSettings.Senha = "senha";
    builder.Services.Configure<SankhyaClientSettings>(sankhyaSettings);
    
  2. Injete o serviço:

    builder.Services.AddSankhyaClient();
    

🧠 Validação de modelos

Todos os modelos devem herdar de SankhyaModelBase. Todas as propriedades devem ser NullableState<T>. As chaves primárias (com atributo [Key]) devem estar com:

  • AutoEnumerable == true: obrigatoriamente UnSet
  • AutoEnumerable == false: obrigatoriamente Set
  • Nunca podem estar com Clear

⚙️ Funcionalidades

  1. Exemplo de entidade:

    public class ProdutoEntity : SankhyaModelBase
    {
        [Key("CODPROD", true)] public NullableState<long> CodProd { get; set; }
        [XmlElement("CODVOL")] public NullableState<string> CodVol { get; set; }
        [XmlElement("DESCRPROD")] public NullableState<string> DescrProd { get; set; }
        [XmlElement("REFFORN")] public NullableState<string> RefForn { get; set; }
    }
    
  2. Serviço da entidade usando nome da entidade como string:

    public class ProdutoClientService : BaseService<ProdutoEntity>
    {
        public ProdutoClientService(IOptions<SankhyaClientSettings> sankhyaApiConfig)
            : base(sankhyaApiConfig, "Produto") { }
    }
    

🧪 Uso

Inserir

var produtos = new List<ProdutoEntity>
{
    new() { CodProd = 1, CodVol = "UN", DescrProd = "Produto A", RefForn = "F123" },
    new() { CodProd = 2, CodVol = "UN", DescrProd = "Produto B", RefForn = "F456" }
};
var response = await produtoClientService.CreateManyAsync(produtos);

Atualizar

produtos[0].DescrProd = "Produto A Atualizado";
var response = await produtoClientService.UpdateManyAsync(produtos);

Buscar registros com FindAsync

string query = "this.CODPROD = 1 AND this.AD_ATIVO = 'S'";
var produtos = await produtoClientService.FindAsync(query);

Query tipada com QueryRawAsync

string script = "SELECT CODPROD, DESCRPROD FROM TGFPRO WHERE ATIVO = 'S'";
List<ProdutoEntity> resultado = await produtoClientService.QueryRawAsync<ProdutoEntity>(script);

Query como dicionário com QueryAsDictionaryAsync

string script = "SELECT CODPROD, DESCRPROD FROM TGFPRO WHERE ATIVO = 'S'";
List<Dictionary<string, object?>> resultadoDict = await produtoClientService.QueryAsDictionaryAsync(script);

📄 Licença

Este projeto está sob a licença MIT. Veja o arquivo LICENSE para mais detalhes.

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
4.0.0 65 4/4/2025
3.2.0 112 4/3/2025
3.1.0 141 4/2/2025
3.0.1 145 4/1/2025
3.0.0 134 4/1/2025
2.1.0 234 3/31/2025 2.1.0 is deprecated because it has critical bugs.
2.0.0 218 11/11/2024
1.1.0 139 11/2/2024 1.1.0 is deprecated because it is no longer maintained.
1.0.1 122 11/1/2024 1.0.1 is deprecated because it is no longer maintained.
1.0.0 122 11/1/2024 1.0.0 is deprecated because it is no longer maintained.
0.5.2.11 135 10/29/2024 0.5.2.11 is deprecated because it is no longer maintained.
0.5.2.10 124 10/29/2024 0.5.2.10 is deprecated because it is no longer maintained.
0.5.2.9 111 10/29/2024 0.5.2.9 is deprecated because it is no longer maintained.
0.5.2.8 118 10/29/2024 0.5.2.8 is deprecated because it is no longer maintained.
0.5.2.7 113 10/29/2024 0.5.2.7 is deprecated because it is no longer maintained.
0.5.2.6 110 10/29/2024 0.5.2.6 is deprecated because it is no longer maintained.
0.5.2.5 124 10/29/2024 0.5.2.5 is deprecated because it is no longer maintained.
0.5.2.4 128 10/29/2024 0.5.2.4 is deprecated because it is no longer maintained.
0.5.2.3 117 10/25/2024 0.5.2.3 is deprecated because it is no longer maintained.
0.5.2.2 107 10/25/2024 0.5.2.2 is deprecated because it is no longer maintained.
0.5.2.1 108 10/25/2024 0.5.2.1 is deprecated because it is no longer maintained.
0.5.2 111 10/24/2024 0.5.2 is deprecated because it is no longer maintained.
0.5.1 114 10/24/2024 0.5.1 is deprecated because it is no longer maintained.
0.5.0 114 10/23/2024 0.5.0 is deprecated because it is no longer maintained.
0.4.2 116 10/15/2024 0.4.2 is deprecated because it is no longer maintained.
0.4.1 116 10/15/2024 0.4.1 is deprecated because it is no longer maintained.
0.4.0 122 10/15/2024 0.4.0 is deprecated because it is no longer maintained.
0.3.3 123 10/14/2024 0.3.3 is deprecated because it is no longer maintained.
0.3.2 118 10/14/2024 0.3.2 is deprecated because it is no longer maintained.
0.3.1 120 10/14/2024 0.3.1 is deprecated because it is no longer maintained.
0.3.0 114 10/14/2024 0.3.0 is deprecated because it is no longer maintained.
0.2.0 119 10/12/2024 0.2.0 is deprecated because it is no longer maintained.
0.1.2 125 10/11/2024 0.1.2 is deprecated because it is no longer maintained.
0.1.1 161 10/11/2024 0.1.1 is deprecated because it is no longer maintained.
0.1.0 116 10/11/2024 0.1.0 is deprecated because it is no longer maintained.