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

14 lines
338 B

using Microsoft.Extensions.DependencyInjection;
namespace Tiobon.Core.Common.DB.Dapper.Extensions;
/// <summary>
/// Tiobon.Core.Common.DB.Dapper 启动服务
/// </summary>
public static class SimpleDapperSetup
{
public static void AddSimpleDapperSetup(this IServiceCollection services)
{
AppSetting.Init();
}
}