Sharkable.AutoCrud.SqlSugar
0.0.23
dotnet add package Sharkable.AutoCrud.SqlSugar --version 0.0.23
NuGet\Install-Package Sharkable.AutoCrud.SqlSugar -Version 0.0.23
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="Sharkable.AutoCrud.SqlSugar" Version="0.0.23" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Sharkable.AutoCrud.SqlSugar --version 0.0.23
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Sharkable.AutoCrud.SqlSugar, 0.0.23"
#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 Sharkable.AutoCrud.SqlSugar as a Cake Addin #addin nuget:?package=Sharkable.AutoCrud.SqlSugar&version=0.0.23 // Install Sharkable.AutoCrud.SqlSugar as a Cake Tool #tool nuget:?package=Sharkable.AutoCrud.SqlSugar&version=0.0.23
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Sharkable.AutoCrud
automatic generate crud operations api for Sharkable based minimal api framework
Note this is a Sharkable based extension and WIP, just for testing users
Usage
//in your sharkable based program for aot mode
builder.Services.AddShark([typeof(Program).Assembly, typeof(Sharkable.AutoCrudSqlSugar).Assembly], opt=>{
opt.Format = Sharkable.EndpointFormat.Tolower;
opt.ConfigureAutoCrud(s =>
{
s.IsAutoCloseConnection = true;
s.DbType = DbType.Sqlite;
s.ConnectionString = "DataSource=testsample.db";
});
});
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Sharkable (>= 0.0.23)
- SqlSugarCore (>= 5.1.4.170-preview05)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
fix options might be null