Symbiotic_x64 3.1.0.1
See the version list below for details.
dotnet add package Symbiotic_x64 --version 3.1.0.1
NuGet\Install-Package Symbiotic_x64 -Version 3.1.0.1
<PackageReference Include="Symbiotic_x64" Version="3.1.0.1" />
paket add Symbiotic_x64 --version 3.1.0.1
#r "nuget: Symbiotic_x64, 3.1.0.1"
// Install Symbiotic_x64 as a Cake Addin #addin nuget:?package=Symbiotic_x64&version=3.1.0.1 // Install Symbiotic_x64 as a Cake Tool #tool nuget:?package=Symbiotic_x64&version=3.1.0.1
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 | Versions 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. |
This package has no dependencies.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.0.3 | 119 | 4/9/2014 |
4.0.2 | 56 | 3/20/2014 |
4.0.1 | 60 | 2/21/2014 |
3.1.0.3 | 44 | 6/3/2013 |
3.1.0.2 | 44 | 3/6/2013 |
3.1.0.1 | 44 | 2/9/2013 |
3.1.0 | 78 | 2/1/2013 |
3.0.0.2 | 43 | 12/20/2012 |
3.0.0.1 | 45 | 12/19/2012 |
3.0.0 | 69 | 12/19/2012 |
2.6.4 | 129 | 11/9/2012 |
2.6.3 | 80 | 11/2/2012 |
2.6.2 | 77 | 10/30/2012 |
2.6.1 | 75 | 10/25/2012 |
04-Feb-2013
Added support for DeleteRealationOnly so deletes will only delete the reationship and not the child object.
See DatabaseRelationTableAttribute for new overloads.
Improved error message when wrong database type is used for enumerations. Methods DataReaderToRelation, and DataReaderToObject.
08-Feb-2013
Improved implementations of IDatabaseTypesFactory, removed SettingLoaded and incorperated it into IDatabaseTypesFactory implementations.
Started adding c# test projects, plan to include Oracle, Sql Server and MySql at least.
09-Feb-2013
Spelling fixes
c# test projects
API Comments
Code analysis clean-ups. Prep for deployment.