
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
ZStack.AspNetCore.SqlSugar
Advanced tools
.NET基础库:
ASP .NET Core基础库:
ASP .NET Core组件库:
添加NuGet程序包 ZStack.Extensions
Program.cs
global using Microsoft.Extensions.DependencyInjection;
global using Serilog;
global using ZStack.Core;
var sp = DependencyInjection.CreateConsoleAppServiceProvider(configure => { });
var logger = sp.GetRequiredService<ILogger>()
.ForContext<Program>();
logger.Information("Hello, World!");
添加NuGet程序包 ZStack.AspNetCore
GlobalUsings.cs
global using Furion;
global using ZStack.AspNetCore;
global using App = ZStack.AspNetCore.App;
var builder = WebApplication.CreateBuilder(args).InjectZStack();
var app = builder.Build();
app.Run();
/// <summary>
/// 应用启动配置
/// </summary>
public class Startup : AppStartup
{
/// <summary>
/// 服务配置
/// </summary>
/// <param name="services"></param>
public void ConfigureServices(IServiceCollection services)
{
services.AddControllersWithViews().AddInject();
}
/// <summary>
/// 中间件配置
/// </summary>
/// <param name="app"></param>
/// <param name="env"></param>
public void Configure(IApplicationBuilder app, IHostEnvironment env)
{
...
app.UseRouting();
...
app.UseZStackInject();
}
}
graph TD;
ZStack.Extensions --> ZStack.Core;
ZStack.Core --ASP .NET Core--> ZStack.AspNetCore;
ZStack.AspNetCore --> ZStack.AspNetCore.SqlSugar;
ZStack.AspNetCore --> ZStack.AspNetCore.EventBus;
ZStack.AspNetCore --> ZStack.AspNetCore.Hangfire;
ZStack.AspNetCore.Hangfire --> ..MemoryStorage;
ZStack.AspNetCore.Hangfire --> ..Redis;
ZStack.AspNetCore.Hangfire --> ..PostgreSql;
FAQs
ZStack.AspNetCore框架 SqlSugar插件
We found that zstack.aspnetcore.sqlsugar demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.