OneData 0.2.0.26-alpha

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

// Install OneData as a Cake Tool
#tool nuget:?package=OneData&version=0.2.0.26-alpha&prerelease

A fast and easy ORM focused on the reduction of development times and ease of work.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
0.2.1.14-alpha 270 6/28/2020
0.2.0.26-alpha 272 6/26/2020
0.1.74.3-alpha 291 3/10/2020
0.1.73.9-alpha 279 1/23/2020
0.1.73.4-alpha 267 1/23/2020
0.1.72.39-alpha 247 1/21/2020
0.1.70.15-alpha 295 12/11/2019
0.1.70.14-alpha 374 12/11/2019
0.1.70.9-alpha 287 12/10/2019
0.1.67.2-alpha 347 7/29/2019
0.1.66.11-alpha 322 7/29/2019
0.1.65.6-alpha 294 7/28/2019
0.1.64.31-alpha 297 7/24/2019
0.1.63.16-alpha 287 7/18/2019
0.1.62.23-alpha 300 7/14/2019
0.1.61.17-alpha 333 5/29/2019
0.1.60.7-alpha 311 5/28/2019
0.1.58.21-alpha 323 5/28/2019
0.1.57.9-alpha 317 5/26/2019
0.1.56.3-alpha 318 5/25/2019
0.1.55.4-alpha 340 5/24/2019
0.1.54.63-alpha 366 5/23/2019
0.1.53.21-alpha 345 5/22/2019
0.1.52.1-alpha 320 5/18/2019

Cope<T> class is no longer required by OneData.

With this, came the following breaking changes which is why the development was moved to a new branch:

- Class no longer need to inherit from Cope.
- Select statements have also been affected. To perform a select, instead of using the class name as before, you will need to instantiate an objecto of the desired type and then you will be presented with Select extensions.
- For compatibility reasons, class Cope was replaced with Extend and it is now optional, but if used, it helps easing querys and setting up compatible classes. You can choose to directly inherit from it or set your highest level class to inherit from it.

IManageable interface has been updated. Instead of holding a ModelComposition property, it now holds a GetComposition method that needs to be implemented using the following code block inside each class with their corresponding class type instead of T:

return Manager<T>.Composition;

With this change, OneData returns to its optimization state which was compromised yesterday by calling new T() everytime we needed access to a model composition.

Manager<T> is now not only holding the cached data but it's corresponding model composition with a static get-only property.