ZayniFramework.DataAccess.LightORM 2.2.6

There is a newer version of this package available.
See the version list below for details.
dotnet add package ZayniFramework.DataAccess.LightORM --version 2.2.6
                    
NuGet\Install-Package ZayniFramework.DataAccess.LightORM -Version 2.2.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="ZayniFramework.DataAccess.LightORM" Version="2.2.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ZayniFramework.DataAccess.LightORM" Version="2.2.6" />
                    
Directory.Packages.props
<PackageReference Include="ZayniFramework.DataAccess.LightORM" />
                    
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 ZayniFramework.DataAccess.LightORM --version 2.2.6
                    
#r "nuget: ZayniFramework.DataAccess.LightORM, 2.2.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.
#:package ZayniFramework.DataAccess.LightORM@2.2.6
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ZayniFramework.DataAccess.LightORM&version=2.2.6
                    
Install as a Cake Addin
#tool nuget:?package=ZayniFramework.DataAccess.LightORM&version=2.2.6
                    
Install as a Cake Tool

Using DataContext template to execute CRUD methods.

Add using.

using ZayniFramework.Common;
using ZayniFramework.DataAccess.Lightweight;

Write your own DataContext class and extends the DataContext class.

/// <summary>Your DataContext class.
/// </summary>
internal class UserDataContext : DataContext<UserReqArgs, UserModel>

Then you can do some CRUD action like...<br/>

DataContext.Insert();<br/> DataContext.Update();<br/> DataContext.Delete();<br/> DataContext.Select();<br/>

var model = new UserModel()
{
    Account = "Amber",
    Name    = "Amber Jane",
    Age     = 22,
    DOB     = new DateTime( 1993, 2, 17 ),
    Sex     = 0,
    IsVip   = true
};

var reqArgs = new UserReqArgs()
{
    Account = "Amber"
};

var wheres = new SqlParameter[] 
{ 
    new SqlParameter() { ColumnName = "AccountId", Name = "Account",  DbType = DbTypeCode.String, Value = "Amber001" },
    new SqlParameter() { ColumnName = "Name",      Name = "UserName", DbType = DbTypeCode.String, Value = "Amber" }
};

var r = dataContext.Select( new SelectInfo<UserReqArgs>() { DataContent = reqArgs } );
var c = dataContext.Insert( model );
var u = dataContext.Update( model, wheres: wheres, ignoreColumns: new string[] { "Birthday", "IsVIP" } );
var d = dataContext.Delete( model );

More DataContext examples. You can go to here and here.

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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 was computed. 
.NET Framework net461 was computed.  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
8.0.142 262 3/19/2024
8.0.141 1,912 1/4/2024
8.0.140 570 12/17/2023
6.0.138 138 3/19/2024
6.0.137 205 9/20/2023
6.0.136 183 9/14/2023
6.0.135 214 9/10/2023
6.0.134 227 7/12/2023
6.0.133 235 7/10/2023
6.0.132 224 7/7/2023
6.0.131 234 6/19/2023
6.0.130 227 6/19/2023
6.0.129 8,523 7/2/2022
6.0.128 444 1/16/2022
6.0.127 592 1/15/2022
6.0.126 565 1/15/2022
6.0.125 409 1/8/2022
6.0.125-hotfix1 310 1/8/2022
6.0.124 444 1/7/2022
6.0.123 522 11/14/2021
5.0.129 576 7/2/2022
5.0.128 603 1/16/2022
5.0.125 403 1/8/2022
5.0.124 422 1/7/2022
5.0.123 555 11/14/2021
5.0.122 606 10/11/2021
5.0.121 2,419 5/1/2021
3.1.137 247 9/20/2023
3.1.136 189 9/14/2023
3.1.135 209 9/10/2023
3.1.134 231 7/12/2023
3.1.133 228 7/11/2023
3.1.132 231 7/8/2023
3.1.131 202 6/19/2023
3.1.130 358 2/1/2023
3.1.129 578 7/2/2022
3.1.128 662 1/16/2022
3.1.125 408 1/8/2022
3.1.124 422 1/7/2022
3.1.123 589 11/14/2021
3.1.122 487 10/11/2021
3.1.121 625 5/1/2021
2.31.120 597 3/14/2021
2.30.115 2,052 3/6/2021
2.30.114 514 3/6/2021
2.20.101 572 3/1/2021
2.19.3 554 2/11/2021
2.19.2 10,126 2/6/2021
2.19.1 603 1/6/2021
2.19.0 678 1/1/2021
2.18.3 689 12/27/2020
2.18.2 895 8/29/2020
2.18.1 668 8/26/2020
2.18.0 4,876 8/20/2020
2.17.135 747 8/19/2020
2.17.134 773 7/28/2020
2.17.133 752 7/27/2020
2.17.132 758 7/18/2020
2.17.131 811 7/11/2020
2.16.130 796 6/13/2020
2.15.128 787 6/3/2020
2.15.127 843 5/31/2020
2.15.126 1,272 4/30/2020
2.14.122 711 4/13/2020
2.13.100 754 3/12/2020
2.12.51 832 2/18/2020
2.11.50 1,412 2/10/2020
2.10.44 1,452 1/30/2020
2.9.43 1,622 1/11/2020
2.8.42 1,418 1/10/2020
2.8.41 1,432 1/5/2020
2.7.40 1,448 1/2/2020
2.7.39 1,413 1/2/2020
2.7.38 1,552 1/1/2020
2.6.37 1,434 12/23/2019
2.6.35 1,622 12/4/2019
2.6.1 1,328 12/2/2019
2.6.0 1,370 11/28/2019
2.5.2 1,593 11/26/2019
2.5.1 1,509 11/12/2019
2.5.0 1,360 11/9/2019
2.4.3 1,589 10/16/2019
2.4.2 1,476 10/16/2019
2.4.1 1,559 9/20/2019
2.3.113 541 3/6/2021
2.3.112 542 3/6/2021
2.3.28 1,499 9/19/2019
2.3.27 1,555 8/30/2019
2.3.26 1,497 8/20/2019
2.3.25 1,447 8/12/2019
2.3.22 1,427 7/31/2019
2.3.21 1,613 7/20/2019
2.3.20 1,546 6/22/2019
2.3.19 1,436 6/14/2019
2.3.18 1,476 6/13/2019
2.3.17 1,466 6/13/2019
2.3.15 1,528 6/8/2019
2.3.14 1,463 6/8/2019
2.3.13 1,492 5/30/2019
2.3.12 856 5/24/2019
2.3.11 842 5/24/2019
2.3.10 811 5/21/2019
2.3.9 815 5/9/2019
2.3.8 843 5/8/2019
2.3.7 892 4/30/2019
2.3.6 979 4/23/2019
2.3.5 892 4/19/2019
2.3.4 841 4/18/2019
2.3.3 856 4/17/2019
2.3.2 857 4/6/2019
2.3.1 1,057 12/15/2018
2.3.0 893 12/7/2018
2.2.6 985 11/25/2018
2.2.1 998 11/17/2018
2.2.0 992 11/16/2018
2.1.0 990 11/15/2018
2.0.1 981 11/6/2018
2.0.0 1,019 11/4/2018