You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
471 B
C#

using Ds.Module.AppStartup;
using Microsoft.Extensions.DependencyInjection;
namespace DS.Module.SqlSugar
{
public class SqlSugarAppStartup : Ds_StartupAttribute
{
public void ConfigureServices(IServiceCollection services)
{
// 配置服务
// 其他服务配置...
}
public void Configure(object app)
{
// 配置中间件
// 其他中间件配置...
}
}
}