OneData 0.2.1.14-alpha

This is a prerelease version of OneData.
dotnet add package OneData --version 0.2.1.14-alpha
                    
NuGet\Install-Package OneData -Version 0.2.1.14-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.1.14-alpha" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OneData" Version="0.2.1.14-alpha" />
                    
Directory.Packages.props
<PackageReference Include="OneData" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add OneData --version 0.2.1.14-alpha
                    
#r "nuget: OneData, 0.2.1.14-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.
#addin nuget:?package=OneData&version=0.2.1.14-alpha&prerelease
                    
Install OneData as a Cake Addin
#tool nuget:?package=OneData&version=0.2.1.14-alpha&prerelease
                    
Install OneData as a Cake Tool

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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 330 6/28/2020
0.2.0.26-alpha 338 6/26/2020
0.1.74.3-alpha 345 3/10/2020
0.1.73.9-alpha 332 1/23/2020
0.1.73.4-alpha 320 1/23/2020
0.1.72.39-alpha 292 1/21/2020
0.1.70.15-alpha 343 12/11/2019
0.1.70.14-alpha 456 12/11/2019 0.1.70.14-alpha is deprecated because it has critical bugs.
0.1.70.9-alpha 340 12/10/2019
0.1.67.2-alpha 400 7/29/2019
0.1.66.11-alpha 372 7/29/2019
0.1.65.6-alpha 350 7/28/2019
0.1.64.31-alpha 352 7/24/2019
0.1.63.16-alpha 342 7/18/2019
0.1.62.23-alpha 350 7/14/2019
0.1.61.17-alpha 390 5/29/2019
0.1.60.7-alpha 361 5/28/2019
0.1.58.21-alpha 384 5/28/2019
0.1.57.9-alpha 371 5/26/2019
0.1.56.3-alpha 368 5/25/2019
0.1.55.4-alpha 398 5/24/2019
0.1.54.63-alpha 425 5/23/2019
0.1.53.21-alpha 397 5/22/2019
0.1.52.1-alpha 370 5/18/2019

Select methods inside Extend class have been deprecated. This is in favor of evolving the query construction based on a Where method. Instead of using Select, switch to Where, which will always return a List of type T. To specify that you only want 1 record, please use QueryOptions.

The Update Stored Procedure has been updated to enable the possibility of updating values to NULL when specified in QueryOptions using the parameter UpdateNulls. This can also be setted when using the Update Extension. If you have been using the library on other projects, please note that for this new feature to work properly, OneData needs to recreate the Update Store Procedure for each of your models, which will happen when you make your next update of each model.