MagicData 3.6.1

.NET Framework 4.5
dotnet add package MagicData --version 3.6.1
NuGet\Install-Package MagicData -Version 3.6.1
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="MagicData" Version="3.6.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MagicData --version 3.6.1
#r "nuget: MagicData, 3.6.1"
#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.
// Install MagicData as a Cake Addin
#addin nuget:?package=MagicData&version=3.6.1

// Install MagicData as a Cake Tool
#tool nuget:?package=MagicData&version=3.6.1

Easy read and write in your DB
     Simple to use: only 2 lines of code to read and write in SqlServer table!
     DataManager DM = new DataManager("dbname", "catalog", "username", "password");
     DataTable res = DM.getAllRecords Datatable ("table to read");
     Thats all!
     More here http://magicdata.it/Documentazione/EsempioDataManager

Product Versions
.NET Framework net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481
Compatible target framework(s)
Additional computed target framework(s)
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.6.1 734 5/7/2019
3.5.5 764 2/16/2019
2.4.6 1,031 7/18/2018

Added Session support, now data are stored in session via Context.Session object
         passed in costructor. GetAllRecords is changed and it is incompatible with previus version.
         Now it include ModelFilterFunction and ViewModelFilterFunction for applying via anonimous
         function filter to data recovered. Data will be filtered using data stored in session.
         When data modifier method (update, delete, insert) will be used session data will be cleared.
         
         release note:
           1 - introducing favorite tableschema via constructor;