xss.ConnectionManager
2.0.0
This package handles the connection to the database. Allowing the developer to focus only in the SP and parameters he has to send, and no more configurations.
See the version list below for details.
Install-Package xss.ConnectionManager -Version 2.0.0
dotnet add package xss.ConnectionManager --version 2.0.0
<PackageReference Include="xss.ConnectionManager" Version="2.0.0" />
paket add xss.ConnectionManager --version 2.0.0
#r "nuget: xss.ConnectionManager, 2.0.0"
Release Notes
Needed keys in webconfig:
<add key="Logger" value="nlog" /><add key="db_primary" value="{connection name}" />
Support .Netcore 3.0 and .netframework 4.8
How to pass user defined table types:
ListParameters parameters = new ListParameters();
parameters.Add("@marketId", 7);
parameters.Add("@countryCode", "");
parameters.Add("@languageId", 1);
CommandParameter queryCommand = new CommandParameter("Market_GetByParameters_Sp", parameters);
DataRow rowResult = DbManager.Instance.ExecuteRegister(queryCommand);
Dependencies
-
.NETCoreApp 2.2
- System.Configuration.ConfigurationManager (>= 4.7.0)
- System.Data.SqlClient (>= 4.7.0)
- xss.Logger (>= 3.1.0)
-
.NETCoreApp 3.0
- System.Configuration.ConfigurationManager (>= 4.7.0)
- System.Data.SqlClient (>= 4.7.0)
- xss.Logger (>= 3.1.0)
-
.NETFramework 4.7.2
- System.Configuration.ConfigurationManager (>= 4.7.0)
- System.Data.SqlClient (>= 4.7.0)
- xss.Logger (>= 3.1.0)
-
.NETFramework 4.8
- System.Configuration.ConfigurationManager (>= 4.7.0)
- System.Data.SqlClient (>= 4.7.0)
- xss.Logger (>= 3.1.0)
Used By
NuGet packages (182)
Showing the top 5 NuGet packages that depend on xss.ConnectionManager:
| Package | Downloads |
|---|---|
|
xss.ProductEntryBackEnd
Admin product and categories
|
|
|
xss.EmailTemplateBackEnd
Generation new version with changes in updated nugets
|
|
|
xss.Market.Client
For another clients not asea.
Need to run the script 2.0.0 in the sql, otherwhise save will don't work.
xss.Market.client >=2.0.0
|
|
|
xss.Logistics.Client
Contains functionalities related to shipping and warehouse configuration
|
|
|
xss.SettingGlobalEngine.NetCore
Package Description
|