Sankhya 5.0.356

There is a newer version of this package available.
See the version list below for details.
dotnet add package Sankhya --version 5.0.356
                    
NuGet\Install-Package Sankhya -Version 5.0.356
                    
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="Sankhya" Version="5.0.356" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Sankhya" Version="5.0.356" />
                    
Directory.Packages.props
<PackageReference Include="Sankhya" />
                    
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 Sankhya --version 5.0.356
                    
#r "nuget: Sankhya, 5.0.356"
                    
#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 Sankhya@5.0.356
                    
#: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=Sankhya&version=5.0.356
                    
Install as a Cake Addin
#tool nuget:?package=Sankhya&version=5.0.356
                    
Install as a Cake Tool

Sankhya SDK

📊⚙️ Sankhya .NET SDK.

GitHub license Time tracker

Sankhya logo

CI/CD

Build status Last commit Tests Coverage Code Smells LoC
Build status GitHub last commit AppVeyor tests (branch) Coverage Code Smells Lines of Code

Code Quality

Codacy Badge Codacy Badge

codecov CodeFactor

Maintainability Test Coverage

Quality Gate Status Maintainability Rating

Technical Debt Duplicated Lines (%)

Reliability Rating Security Rating

Bugs Vulnerabilities


Installation

Github Releases

GitHub last release Github All Releases

Download the latest .zip file from the Releases page.

Nuget package manager

Package Version Downloads
Sankhya Sankhya NuGet Version Sankhya NuGet Downloads

Features

The SDK provides a comprehensive implementation of Sankhya's web services. If the service you need is not included, you can independently implement the request/response and contribute via pull requests.

Key Highlights

  • Know Services: Predefined service wrappers for common operations.
  • Sankhya Wrapper: Handles low-level HTTP requests, serialization, and authentication.
  • Extensibility: Add custom functionality by extending the SDK.

For details, check the Know Services Wiki.


Usage

Dependency Injection (IoC)

Register the Sankhya wrapper using the CrispyWaffle toolkit's Service Locator:

var connectionSankhya = new Connection(); // Fill in your details
ServiceLocator.Register(() => new SankhyaContext(connectionSankhya), LifeStyle.Singleton);
Constructor Injection
public class MyClass
{
    private readonly SankhyaContext _sankhyaContext;

    public MyClass(SankhyaContext sankhyaContext)
    {
        _sankhyaContext = sankhyaContext ?? throw new ArgumentNullException(nameof(sankhyaContext));
    }
}
Manual Resolution
var sankhyaContext = ServiceLocator.Resolve<SankhyaContext>();

Session Management

Retrieve and manage active sessions:

var sessions = KnowServicesRequestWrapper.GetSessions();
foreach (var session in sessions)
{
    KnowServicesRequestWrapper.KillSession(session.Id);
}

Support

If you need help, feel free to open an issue.


Contributing

Contributions are welcome! Check out the CONTRIBUTING.md guide for details.


Contributors

Thanks to all contributors! 💙

<table> <tbody> <tr> <td align="center"> <a href="https://github.com/guibranco"> <img src="https://avatars.githubusercontent.com/u/3362854?v=4" width="100;" alt="guibranco"/> <br /> <sub><b>Guilherme Branco Stracini</b></sub> </a> </td> <td align="center"> <a href="https://github.com/fandriyaninkov"> <img src="https://avatars.githubusercontent.com/u/18394528?v=4" width="100;" alt="fandriyaninkov"/> <br /> <sub><b>Fedor Andriyaninkov</b></sub> </a> </td> <td align="center"> <a href="https://github.com/pedrowindisch"> <img src="https://avatars.githubusercontent.com/u/30203228?v=4" width="100;" alt="pedrowindisch"/> <br /> <sub><b>Pedro Henrique</b></sub> </a> </td> <td align="center"> <a href="https://github.com/viktoriussuwandi"> <img src="https://avatars.githubusercontent.com/u/68414300?v=4" width="100;" alt="viktoriussuwandi"/> <br /> <sub><b>Viktorius Suwandi</b></sub> </a> </td> </tr> <tbody> </table>

Bots

<table> <tbody> <tr> <td align="center"> <a href="https://github.com/dependabot[bot]"> <img src="https://avatars.githubusercontent.com/in/29110?v=4" width="100;" alt="dependabot[bot]"/> <br /> <sub><b>dependabot[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/github-actions[bot]"> <img src="https://avatars.githubusercontent.com/in/15368?v=4" width="100;" alt="github-actions[bot]"/> <br /> <sub><b>github-actions[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/penify-dev[bot]"> <img src="https://avatars.githubusercontent.com/in/399279?v=4" width="100;" alt="penify-dev[bot]"/> <br /> <sub><b>penify-dev[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/stack-file[bot]"> <img src="https://avatars.githubusercontent.com/in/408123?v=4" width="100;" alt="stack-file[bot]"/> <br /> <sub><b>stack-file[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/gitauto-ai[bot]"> <img src="https://avatars.githubusercontent.com/in/844909?v=4" width="100;" alt="gitauto-ai[bot]"/> <br /> <sub><b>gitauto-ai[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/codefactor-io[bot]"> <img src="https://avatars.githubusercontent.com/in/25603?v=4" width="100;" alt="codefactor-io[bot]"/> <br /> <sub><b>codefactor-io[bot]</b></sub> </a> </td> </tr> <tr> <td align="center"> <a href="https://github.com/snyk-bot"> <img src="https://avatars.githubusercontent.com/u/19733683?v=4" width="100;" alt="snyk-bot"/> <br /> <sub><b>Snyk bot</b></sub> </a> </td> </tr> <tbody> </table>

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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 is compatible.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Sankhya:

Package Downloads
EditoraInovacao.Sankhya.Entities

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.0.431 145 9/22/2025
5.0.428 225 9/15/2025
5.0.425 221 9/15/2025
5.0.422 218 9/15/2025
5.0.415 142 9/8/2025
5.0.412 139 9/8/2025
5.0.409 142 9/8/2025
5.0.404 142 9/8/2025
5.0.395 151 9/3/2025
5.0.392 146 9/1/2025
5.0.385 171 8/29/2025
5.0.380 256 8/25/2025
5.0.375 260 8/25/2025
5.0.372 141 8/18/2025
5.0.359 138 8/18/2025
5.0.356 147 8/11/2025
5.0.351 141 8/11/2025
5.0.348 152 8/4/2025
5.0.345 115 7/28/2025
5.0.341 113 7/28/2025
5.0.334 121 7/28/2025
5.0.331 127 7/28/2025
5.0.322 488 7/24/2025
5.0.315 481 7/23/2025
5.0.310 487 7/23/2025
5.0.303 485 7/23/2025
5.0.286 154 7/14/2025
5.0.283 153 7/14/2025
5.0.274 155 7/14/2025
5.0.271 160 7/7/2025
5.0.266 164 7/7/2025
5.0.263 162 6/30/2025
5.0.260 162 6/30/2025
5.0.255 171 6/23/2025
5.0.252 168 6/23/2025
5.0.247 184 6/16/2025
5.0.244 234 6/9/2025
5.0.241 250 6/9/2025
5.0.238 186 6/2/2025
5.0.235 194 5/26/2025
5.0.232 196 5/19/2025
5.0.229 189 5/19/2025
5.0.224 256 5/12/2025
5.0.221 182 5/8/2025
5.0.212 199 5/5/2025
5.0.207 188 4/28/2025
5.0.202 212 4/28/2025
5.0.197 228 4/21/2025
5.0.192 213 4/21/2025
5.0.189 264 4/14/2025
5.0.186 239 4/14/2025
5.0.181 218 4/7/2025
5.0.178 228 4/7/2025
5.0.173 218 3/31/2025
5.0.170 414 3/24/2025
5.0.167 404 3/24/2025
5.0.162 402 3/24/2025
5.0.159 204 3/17/2025
5.0.156 191 3/17/2025
5.0.151 200 3/17/2025
5.0.144 209 3/17/2025
5.0.141 259 3/10/2025
5.0.138 230 3/10/2025
5.0.135 183 3/3/2025
5.0.132 178 3/3/2025
5.0.127 210 2/24/2025
5.0.124 160 2/24/2025
5.0.119 160 2/24/2025
5.0.116 183 2/21/2025
5.0.113 181 2/21/2025
5.0.107 190 2/17/2025
5.0.102 183 2/17/2025
5.0.93 188 2/10/2025
5.0.90 193 2/10/2025
5.0.85 2,374 2/3/2025
5.0.82 163 2/3/2025
5.0.77 153 2/3/2025
5.0.74 224 1/27/2025
5.0.71 131 1/27/2025
5.0.66 144 1/27/2025
5.0.59 149 1/21/2025
5.0.58 445 1/20/2025
5.0.55 144 1/20/2025
5.0.52 159 1/20/2025
5.0.47 142 1/20/2025
5.0.38 139 1/13/2025
5.0.35 137 1/13/2025
5.0.32 135 1/13/2025
5.0.28 338 1/13/2025
5.0.19 139 1/13/2025
5.0.8 138 1/13/2025
4.1.106 253 1/6/2025
4.1.103 137 1/6/2025
4.1.98 139 1/6/2025
4.1.91 144 1/6/2025
4.1.84 152 12/31/2024
4.1.80 149 12/30/2024
4.1.77 142 12/30/2024
4.1.65 208 12/30/2024
4.1.57 148 12/30/2024
4.1.52 152 12/27/2024
4.1.47 156 12/27/2024
4.0.34 151 12/27/2024
4.0.25 146 12/27/2024
4.0.15 142 12/27/2024
4.0.8 160 12/27/2024
3.1.134 153 12/27/2024
3.1.126 321 12/23/2024
3.1.123 150 12/23/2024
3.1.118 148 12/23/2024
3.1.108 312 12/16/2024
3.1.103 157 12/16/2024
3.1.98 216 12/9/2024
3.1.95 153 12/9/2024
3.1.92 140 12/9/2024
3.1.83 383 12/2/2024
3.1.80 146 12/2/2024
3.1.75 141 12/2/2024
3.1.66 143 12/2/2024
3.1.61 390 11/25/2024
3.1.58 155 11/25/2024
3.1.53 158 11/25/2024
3.1.42 145 11/18/2024
3.1.37 325 11/18/2024
3.1.32 147 11/18/2024
3.1.16 155 11/17/2024
3.0.969 159 11/12/2024
3.0.950 162 11/12/2024
3.0.947 151 11/12/2024
3.0.938 340 11/11/2024
3.0.926 314 11/4/2024
3.0.923 148 11/4/2024
3.0.916 251 10/28/2024
3.0.913 145 10/28/2024
3.0.910 144 10/28/2024
3.0.889 310 10/21/2024
3.0.886 164 10/21/2024
3.0.883 155 10/21/2024
3.0.878 165 10/21/2024
3.0.869 166 10/19/2024
3.0.865 194 10/18/2024
3.0.862 184 10/18/2024
3.0.856 166 10/18/2024
3.0.845 152 10/18/2024
3.0.842 291 10/14/2024
3.0.837 170 10/12/2024
3.0.822 145 10/7/2024
3.0.819 147 10/2/2024
3.0.816 170 10/2/2024
3.0.811 156 10/2/2024
3.0.808 156 10/2/2024
3.0.805 163 10/2/2024
3.0.794 404 9/23/2024
3.0.791 173 9/23/2024
3.0.786 160 9/23/2024
3.0.782 185 9/17/2024
3.0.778 317 9/16/2024
3.0.775 176 9/16/2024
3.0.768 236 9/9/2024
3.0.765 177 9/9/2024
3.0.760 170 9/9/2024
3.0.757 155 9/9/2024
3.0.748 304 9/2/2024
3.0.745 172 9/2/2024
3.0.740 168 8/28/2024
3.0.734 176 8/28/2024
3.0.731 148 8/28/2024
3.0.722 183 8/27/2024
3.0.719 166 8/27/2024
3.0.707 166 8/27/2024
3.0.702 173 8/27/2024
3.0.694 182 8/26/2024
3.0.686 168 8/26/2024
3.0.680 300 8/26/2024
3.0.672 148 8/26/2024
3.0.656 186 8/24/2024
3.0.648 195 8/24/2024
3.0.640 881 8/19/2024
3.0.637 168 8/19/2024
3.0.634 178 8/19/2024
3.0.629 171 8/19/2024
3.0.620 201 8/12/2024
3.0.617 170 8/12/2024
3.0.612 172 8/12/2024
3.0.609 155 8/5/2024
3.0.606 124 8/5/2024
3.0.601 183 7/29/2024
3.0.598 162 7/29/2024
3.0.589 171 7/22/2024
3.0.586 171 7/22/2024
3.0.567 223 7/22/2024
3.0.564 139 7/20/2024
3.0.563 160 7/20/2024
3.0.559 176 7/20/2024
3.0.549 151 7/17/2024
3.0.545 162 7/17/2024
3.0.542 153 7/17/2024
3.0.539 141 7/16/2024
3.0.535 172 7/15/2024
3.0.530 157 7/15/2024
3.0.523 161 7/15/2024
3.0.514 148 7/12/2024
3.0.511 154 7/12/2024
3.0.506 145 7/12/2024
3.0.503 134 7/12/2024
3.0.500 145 7/12/2024
3.0.477 170 7/8/2024
3.0.470 198 7/3/2024
3.0.467 193 7/1/2024
3.0.464 180 7/1/2024
3.0.459 199 6/24/2024
3.0.456 208 6/17/2024
3.0.453 169 6/17/2024
3.0.448 180 6/10/2024
3.0.445 172 6/3/2024
3.0.442 167 6/3/2024
3.0.437 141 5/27/2024
3.0.434 201 5/27/2024
3.0.429 167 5/27/2024
3.0.422 174 5/27/2024
3.0.413 176 5/27/2024
3.0.402 185 5/20/2024
3.0.399 186 5/19/2024
3.0.393 164 5/13/2024
3.0.390 213 5/6/2024
3.0.387 179 4/30/2024
3.0.384 171 4/30/2024
3.0.380 180 4/30/2024
3.0.373 203 4/30/2024
3.0.364 171 4/30/2024
3.0.361 175 4/29/2024
3.0.348 172 4/22/2024
3.0.345 155 4/22/2024
3.0.340 207 4/22/2024
3.0.337 186 4/22/2024
3.0.328 202 4/15/2024
3.0.325 183 4/15/2024
3.0.320 174 4/15/2024
3.0.313 185 4/15/2024
3.0.304 211 4/8/2024
3.0.301 174 4/8/2024
3.0.296 182 4/8/2024
3.0.289 209 4/1/2024
3.0.286 173 4/1/2024
3.0.281 220 3/25/2024
3.0.278 182 3/25/2024
3.0.273 191 3/18/2024
3.0.270 202 3/18/2024
3.0.265 197 3/11/2024
3.0.262 183 3/11/2024
3.0.257 227 3/4/2024
3.0.254 191 2/26/2024
3.0.251 215 2/26/2024
3.0.246 183 2/26/2024
3.0.239 167 2/19/2024
3.0.236 160 2/19/2024
3.0.231 177 2/19/2024
3.0.224 176 2/19/2024
3.0.215 177 2/14/2024
3.0.210 195 2/12/2024
3.0.207 213 2/12/2024
3.0.204 203 2/12/2024
3.0.197 215 2/7/2024
3.0.188 187 2/6/2024
3.0.184 192 2/5/2024
3.0.178 173 1/30/2024
3.0.175 183 1/30/2024
3.0.170 171 1/29/2024
3.0.163 176 1/29/2024
3.0.156 192 1/29/2024
3.0.142 169 1/24/2024
3.0.139 184 1/24/2024
3.0.136 155 1/23/2024
3.0.129 182 1/23/2024
3.0.124 175 1/23/2024
3.0.117 170 1/22/2024
3.0.114 169 1/22/2024
3.0.107 197 1/22/2024
3.0.102 171 1/22/2024
3.0.97 176 1/22/2024
3.0.86 235 1/16/2024
3.0.83 178 1/16/2024
3.0.71 196 1/15/2024
3.0.62 190 1/8/2024
3.0.59 242 1/1/2024
3.0.56 201 12/25/2023
3.0.53 183 12/25/2023
3.0.48 193 12/25/2023
3.0.41 165 12/25/2023
3.0.32 1,467 12/18/2023
3.0.5 202 12/17/2023
2.0.773 193 12/14/2023
2.0.767 223 12/11/2023
2.0.764 197 12/11/2023
2.0.759 203 12/11/2023
2.0.752 228 12/11/2023
2.0.743 171 12/11/2023
2.0.732 204 12/11/2023
2.0.729 198 12/6/2023
2.0.724 221 12/4/2023
2.0.721 178 12/4/2023
2.0.716 175 12/4/2023
2.0.709 178 12/4/2023
2.0.698 157 11/27/2023
2.0.695 152 11/27/2023
2.0.690 1,586 11/21/2023
2.0.686 174 11/21/2023
2.0.681 183 11/20/2023
2.0.674 187 11/20/2023
2.0.665 271 11/14/2023
2.0.658 183 11/14/2023
2.0.653 175 11/14/2023
2.0.650 177 11/14/2023
2.0.643 187 11/14/2023
2.0.636 167 11/14/2023
2.0.623 148 11/13/2023
2.0.614 215 11/9/2023
2.0.606 187 11/6/2023
2.0.601 239 10/30/2023
2.0.598 185 10/30/2023
2.0.595 181 10/30/2023
2.0.590 194 10/26/2023
2.0.586 212 10/23/2023
2.0.583 186 10/23/2023
2.0.578 228 10/17/2023
2.0.575 228 10/17/2023
2.0.570 191 10/17/2023
2.0.563 201 10/16/2023
2.0.554 169 10/16/2023
2.0.543 221 10/16/2023
2.0.530 195 10/10/2023
2.0.526 198 10/10/2023
2.0.519 212 10/8/2023
2.0.512 154 10/8/2023
2.0.495 212 10/8/2023
2.0.486 215 10/8/2023
2.0.450 205 10/2/2023
2.0.447 207 10/2/2023
2.0.442 233 9/25/2023
2.0.439 208 9/25/2023
2.0.434 198 9/23/2023
2.0.431 159 9/19/2023
2.0.428 163 9/19/2023
2.0.419 238 9/16/2023
2.0.416 236 9/13/2023
2.0.413 206 9/12/2023
2.0.408 221 9/12/2023
2.0.401 194 9/12/2023
2.0.392 219 9/6/2023
2.0.387 402 9/4/2023
2.0.384 316 8/28/2023
2.0.381 215 8/28/2023
2.0.376 288 8/24/2023
2.0.373 469 8/14/2023
2.0.344 315 8/9/2023
2.0.337 255 8/9/2023
2.0.332 256 8/9/2023
2.0.325 446 7/29/2023
2.0.322 260 7/29/2023
2.0.315 213 7/29/2023
2.0.311 329 7/24/2023
2.0.308 262 7/24/2023
2.0.302 306 7/17/2023
2.0.299 231 7/17/2023
2.0.284 261 7/12/2023
2.0.272 355 7/10/2023
2.0.265 277 7/10/2023
2.0.256 356 7/3/2023
2.0.253 260 7/3/2023
2.0.248 274 7/3/2023
2.0.241 403 6/19/2023
2.0.238 273 6/19/2023
2.0.233 418 6/15/2023
2.0.230 304 6/15/2023
2.0.225 314 6/15/2023
2.0.218 360 6/6/2023
2.0.215 327 6/5/2023
2.0.210 245 6/5/2023
2.0.203 250 6/5/2023
2.0.191 553 5/22/2023
2.0.188 281 5/22/2023
2.0.183 366 5/15/2023
2.0.180 327 5/15/2023
2.0.175 386 5/8/2023
2.0.168 257 5/8/2023
2.0.163 508 5/4/2023
2.0.160 297 5/3/2023
2.0.155 528 4/10/2023
2.0.152 315 4/10/2023
2.0.147 307 4/9/2023
2.0.141 295 4/4/2023
2.0.136 455 4/3/2023
2.0.133 335 4/3/2023
2.0.128 431 3/27/2023
2.0.125 323 3/27/2023
2.0.122 370 3/27/2023
2.0.119 313 3/27/2023
2.0.111 357 3/26/2023
2.0.108 390 3/22/2023
2.0.103 359 3/21/2023
2.0.98 348 3/21/2023
2.0.91 445 3/5/2023
2.0.86 362 3/5/2023
2.0.82 350 3/5/2023
2.0.76 353 3/3/2023
2.0.75 354 3/3/2023
2.0.65 390 2/28/2023
2.0.62 415 1/30/2023
2.0.59 510 1/23/2023
2.0.56 383 1/23/2023
2.0.53 415 1/19/2023
2.0.52 414 1/17/2023
2.0.51 667 1/16/2023
2.0.50 433 1/16/2023
2.0.47 401 1/16/2023
2.0.40 413 1/16/2023
2.0.35 394 1/16/2023
2.0.29 389 1/16/2023
2.0.26 424 1/16/2023
2.0.20 431 1/16/2023
1.0.2 1,656 9/22/2019

Chore