Archer.Repository
1.0.13
dotnet add package Archer.Repository --version 1.0.13
NuGet\Install-Package Archer.Repository -Version 1.0.13
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="Archer.Repository" Version="1.0.13" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Archer.Repository" Version="1.0.13" />
<PackageReference Include="Archer.Repository" />
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 Archer.Repository --version 1.0.13
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Archer.Repository, 1.0.13"
#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 Archer.Repository@1.0.13
#: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=Archer.Repository&version=1.0.13
#tool nuget:?package=Archer.Repository&version=1.0.13
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Archer.Repository
用來幫忙產生並執行SQL script於SQL Server的套件
API
| 名稱 | 說明 | 泛型 | 參數 |
|---|---|---|---|
| Execute | 執行SQL | Table | sql, param, Isolation Level |
| Query | 查詢 | Table | sql, param, Isolation Level |
| QuerySingle | 單一查詢 | Table | sql, param, options, Isolation Level |
| Create | 新增 | Table | model, Isolation Level |
| Update | 更新 | Table | model, key, Isolation Level |
| Delete | 刪除 | Table | model, Isolation Level |
📌 上面方法 Isolation Level 預設為 ReadCommitted
用法範例
引入並建立連線
using Archer.Repository
Repository repository = new Repository("your connection string", securityHelper);
根據要查詢的table,建立model class,並且記得都要預設為 null
public class Users
{
public int? Id { get; set; }
public string? Name { get; set; }
public string? Account { get; set; }
}
查詢
var loans = repository.Query<Loan>();
var groupCodes = repository.Query<GroupCodes>("SELECT * FROM GroupCode;");
var users = repository.Query<Users>(param: new { Account = "123456" });
新增
repository.Create(new Users
{
Name = "測試CREATE",
Account = "t1123456",
});
更新
repository.Update<Users>(new
{
Group = 2,
},
new
{
Name = "測試CREATE",
Account = "t1123456",
});
刪除
repository.Delete<Users>(new
{
Name = "測試CREATE",
Account = "t1123456",
});
| 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. 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.
-
.NETStandard 2.0
- Archer.Extension (>= 1.0.9)
- Dapper (>= 2.1.35)
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.13 | 292 | 5/16/2025 |
| 1.0.12 | 182 | 12/6/2024 |
| 1.0.11 | 182 | 9/18/2024 |
| 1.0.10 | 170 | 9/18/2024 |
| 1.0.9 | 197 | 9/9/2024 |
| 1.0.8 | 209 | 8/16/2024 |
| 1.0.7 | 183 | 8/14/2024 |
| 1.0.6 | 197 | 6/17/2024 |
| 1.0.5 | 185 | 6/3/2024 |
| 1.0.4 | 194 | 5/31/2024 |
| 1.0.3 | 206 | 5/20/2024 |
| 1.0.2 | 203 | 4/24/2024 |
| 1.0.1 | 192 | 4/23/2024 |
| 1.0.0 | 197 | 4/23/2024 |