Symbiotic_Core_x64 1.0.6

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Symbiotic_Core_x64 --version 1.0.6
NuGet\Install-Package Symbiotic_Core_x64 -Version 1.0.6
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_Core_x64" Version="1.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Symbiotic_Core_x64 --version 1.0.6
#r "nuget: Symbiotic_Core_x64, 1.0.6"
#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_Core_x64 as a Cake Addin
#addin nuget:?package=Symbiotic_Core_x64&version=1.0.6

// Install Symbiotic_Core_x64 as a Cake Tool
#tool nuget:?package=Symbiotic_Core_x64&version=1.0.6

Please migrate to use the Net Standard version:

https://www.nuget.org/packages/Symbiotic_Micro_ORM_Net_Standard_x64/

You can now download the "Symbiotic Code Generator" from the Windows Store. The code generator creates the poco classes from the database schema, adds needed attributes and any extended interfaces as requested. Supports c# and VB.NET. https://www.microsoft.com/store/productId/9NN20Q6WFKGS

Thanks, Eric

Product Compatible and additional computed target framework versions.
.NETPlatform dotnet is compatible. 
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

' ********************************************************
' **** Copyright © 2011-2017 Frozen Elephant Inc.     ****
' ********************************************************

v1.06

19-Feb-2017
More exception improvements.

21-Feb-2017
Fixed issue when loading relationships using postgressql, dictionary issue of int32 vs int64
Updating postgresql sql scripts.
Fixed an issue in .net type to database type mapping, we now pass in the database type so we can use DateTime2 for sql server.

3-Mar-2017
Changed ObjectLoader.ExecuteScalar method, now prevents insert, update, delete calls. Since it's a load object, I don't want code created using the objectLoader and doing database writes.
I added ObjectWriter.ExecuteScalar method which will allow the developer to insert, update, delete.
Also you can override ObjectLoader.ValidateNoWrite if you need to disable this in case you have a ton of code doing this.

9-Mar-2017
Found and fixed obscure threading bug in sql builder.

11-Mar-2017
Added overload to InsertUpdate(ByVal items As IEnumerable, ByVal transaction As DbTransaction) to include a transaction.

13-Mar-2017
Improved error messgae if an unsupported .net type is found .net to DBtype mappings. IDatabaseTypesFactory.PropertyTypeToDatabaseType()
Found an design issue related to Sql Server DateTime vs DateTime2 data types. Added DateTimeType property to the DatabaseColumnAttribute, this allows the developer to specify the date type.
Considering the ability to set a default datetime type, currently defaults to DateTime2.
Working on a new API for allowing reads and Writes to the same method, this allows better interaction between read and writes using the same transaction.

14-Mar-2017
Added a default datetime type to DatabaseTypesFactorySqlServer, currently defaults to DateTime2.