Symbiotic_x64 3.1.0.3

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

// Install Symbiotic_x64 as a Cake Tool
#tool nuget:?package=Symbiotic_x64&version=3.1.0.3

The main goal of this library is the simplify data access for Object Oriented programmers. This library provides a simple way to perform CRUD operations. It is not expected to work for everyone or every application. Currently works with SQL Server, Sqlite, My Sql and Oracle.
I wanted something that would be simple to use, understand, and have very little impact on the code. With this library, you can have basic object CRUD working in less than three lines of code, and should require less than an hour to understand the library usage.

I also wanted something that could easily be integrated into an existing project.

The basic concept is that you add a few attributes to your objects which explains the mapping to a database results column/s. You can also implement IDatabaseDefineSupport to provide the mapping details.

There a two main objects used to work with the database. ObjectLoader and ObjectWriter.

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  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.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.0.3 153 4/9/2014
4.0.2 47 3/20/2014
4.0.1 47 2/21/2014
3.1.0.3 43 6/3/2013
3.1.0.2 42 3/6/2013
3.1.0.1 42 2/9/2013
3.1.0 49 2/1/2013
3.0.0.2 43 12/20/2012
3.0.0.1 44 12/19/2012
3.0.0 47 12/19/2012
2.6.4 46 11/9/2012
2.6.3 46 11/2/2012
2.6.2 52 10/30/2012
2.6.1 48 10/25/2012

Version: 3.1.0.3

Modified InsertUpdate method, now checks if object has changed prior. Avoids unneeded database activity.

24-Mar-2013
Modified ISqlQuery to support parameters. Begining to code to fully support parameters.

17-May-2013
Evaluating Dynamic Method support.

23-May-2013
Added support for parameters to ISqlQuery and SqlQuerySimple.

27-May-2013
Dynamic methods currently used for object property setting, performance measures indicate over 20% increase in performance.
Modified IDatabaseTypesFactory to better support parameters in ISqlQuery.
Fixed a bug with DataReader handling of nulls, skips nulls.

28-May-2013
Outstanding issue regarding Dates; seems the parameter inserts do not format the date properly, which is causing problems upon retrieval.
Currently working with the Sqlite community to fix the problem.

30-May-2013
Solved the Sqlite date problem. I was using DBType.DateTime2, and apparently Sqlite does not format DateTime2,
changed it to DBType.DateTime and dates are inserted with correct format and retrieved with-out issue.