SqlCRUDRepository 1.0.13
See the version list below for details.
dotnet add package SqlCRUDRepository --version 1.0.13
NuGet\Install-Package SqlCRUDRepository -Version 1.0.13
<PackageReference Include="SqlCRUDRepository" Version="1.0.13" />
paket add SqlCRUDRepository --version 1.0.13
#r "nuget: SqlCRUDRepository, 1.0.13"
// Install SqlCRUDRepository as a Cake Addin #addin nuget:?package=SqlCRUDRepository&version=1.0.13 // Install SqlCRUDRepository as a Cake Tool #tool nuget:?package=SqlCRUDRepository&version=1.0.13
Utility for CRUD operation based on Dapper ORM.
Soruce Code is free on github: https://github.com/Bijan14093/SqlCRUDClass.git
This tool does not allow direct queries, only allows View And StoredProcedure.
My suggestion is to run queries via StoredProcedure.
It takes more work but it gives you a lot of benefits in the future for system maintenance because all the queries are in the database and DBA can easily improve it.
Product | Versions 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 is compatible. netcoreapp3.1 is compatible. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net40 is compatible. net403 was computed. net45 is compatible. 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. |
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. |
-
.NETCoreApp 3.0
- Dapper (>= 1.50.1)
- Newtonsoft.Json (>= 13.0.1)
- SqlCRUDRepository.Domain (>= 1.0.4)
-
.NETCoreApp 3.1
- Dapper (>= 1.50.1)
- Newtonsoft.Json (>= 13.0.1)
- SqlCRUDRepository.Domain (>= 1.0.4)
-
.NETFramework 4.0
- Dapper (>= 1.50.1)
- Newtonsoft.Json (>= 13.0.1)
- SqlCRUDRepository.Domain (>= 1.0.4)
-
.NETFramework 4.5
- Dapper (>= 1.50.1)
- Newtonsoft.Json (>= 13.0.1)
- SqlCRUDRepository.Domain (>= 1.0.4)
-
.NETStandard 2.0
- Dapper (>= 1.50.1)
- Newtonsoft.Json (>= 13.0.1)
- SqlCRUDRepository.Domain (>= 1.0.4)
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 |
---|---|---|
1.0.27 | 265 | 10/29/2023 |
1.0.26 | 388 | 1/21/2023 |
1.0.25 | 329 | 1/17/2023 |
1.0.23 | 421 | 10/31/2022 |
1.0.22 | 454 | 10/8/2022 |
1.0.21 | 452 | 8/27/2022 |
1.0.19 | 444 | 8/15/2022 |
1.0.18 | 520 | 2/19/2022 |
1.0.17 | 493 | 1/30/2022 |
1.0.16 | 507 | 1/30/2022 |
1.0.15 | 497 | 1/26/2022 |
1.0.14 | 326 | 1/8/2022 |
1.0.13 | 352 | 12/15/2021 |
1.0.12 | 400 | 10/31/2021 |
1.0.11 | 395 | 9/5/2021 |
1.0.10 | 411 | 8/29/2021 |
1.0.9 | 376 | 8/28/2021 |
1.0.6 | 388 | 6/16/2021 |
1.0.5 | 348 | 6/13/2021 |
1.0.4 | 370 | 6/8/2021 |
1.0.13
Added Transaction Count property to IRepository interface.
1.0.12
When you use special characters in the name of properties in objects such as Chinese characters!
Add brackets for the name of the properties of each object to prevent errors when query(SELECT ... FROM TABLE) the database.
1.0.11
Add new constructor with IDbConnection parameter.