Symbiotic_x86 2.6.4
See the version list below for details.
dotnet add package Symbiotic_x86 --version 2.6.4
NuGet\Install-Package Symbiotic_x86 -Version 2.6.4
<PackageReference Include="Symbiotic_x86" Version="2.6.4" />
paket add Symbiotic_x86 --version 2.6.4
#r "nuget: Symbiotic_x86, 2.6.4"
// Install Symbiotic_x86 as a Cake Addin #addin nuget:?package=Symbiotic_x86&version=2.6.4 // Install Symbiotic_x86 as a Cake Tool #tool nuget:?package=Symbiotic_x86&version=2.6.4
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 and My Sql.
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.
02-Nov-2012
Added support for IObjectChangedSupport,
objects can implement the interface and tell the framework if it has changed, ovioding unessissary updates.
Added support for IPerformanceTracking,
objects can implement the interface and the framework will add performace info. to each object it performs an
operation on. Allows developers to see how long a load, insert, delete, update operation takes for any object.
Loads that return collections now return SymbioticList which implements IPerformanceTracking with included performance info.
07-Nov-2012
Added support for Sqlite databases.
Currently works, but seems SqlLite only supports one operation at a time.
Seems every write operation locks the database.