WS.DBAdjutor 2.1.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package WS.DBAdjutor --version 2.1.5
NuGet\Install-Package WS.DBAdjutor -Version 2.1.5
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="WS.DBAdjutor" Version="2.1.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WS.DBAdjutor --version 2.1.5
#r "nuget: WS.DBAdjutor, 2.1.5"
#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 WS.DBAdjutor as a Cake Addin
#addin nuget:?package=WS.DBAdjutor&version=2.1.5

// Install WS.DBAdjutor as a Cake Tool
#tool nuget:?package=WS.DBAdjutor&version=2.1.5

Simplifies the syntax required for common interactions with SQL Databases

Product Compatible and additional computed target framework versions.
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 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
3.0.0 1,037 1/12/2018
2.3.2 926 7/27/2017
2.2.4 978 7/6/2017
2.2.3 917 6/7/2017
2.1.5 1,090 5/22/2017
2.0.0 1,099 5/6/2017
1.1.4 1,024 5/6/2017
1.1.1 883 5/1/2017
1.0.4 1,008 4/29/2017

Several major changes and additions:
-GetReaderField() returns object instead of string now.
-GetReaderField() now has an overload method that takes an integer index and returns the field value at that index.
-Added new method RecordToObject(). This can convert a record to a generic object or an object of a specified type.
-Added new method AllToObjects(). This converts all records in the database results to a list of generic objects or a list of objects of a specified type.
-Added new method IndexOfField(). This method operates much like an "IndexOf" on a string. It takes in a name of a field and returns the index of that field. If the field does not exist, it returns -1.