diff --git a/src/Falcon.StoredProcedureRunner/IServiceCollectionExtend.cs b/src/Falcon.StoredProcedureRunner/IServiceCollectionExtend.cs index 409e012..960ad34 100644 --- a/src/Falcon.StoredProcedureRunner/IServiceCollectionExtend.cs +++ b/src/Falcon.StoredProcedureRunner/IServiceCollectionExtend.cs @@ -8,11 +8,20 @@ namespace Falcon.StoredProcedureRunner public static class IServiceCollectionExtend { /// - /// 注册IRunner接口对象,通过该接口可事先 对数据库存储过程模型化调用。 + /// 注册IRunner接口对象,通过该接口可实现对数据库存储过程模型化调用。 /// /// 注册服务集合 /// 服务集合 public static IServiceCollection UseFalconSPRunner(this IServiceCollection services) { + return services.AddFalconSPRunner(); + } + + /// + /// 注册IRunner接口对象,通过该接口可实现对数据库存储过程模型化调用。 + /// + /// 注册服务集合 + /// 服务集合 + public static IServiceCollection AddFalconSPRunner(this IServiceCollection services) { return services.AddSingleton(); }