从AbpZeroModule覆盖NotificationStore

问题描述 投票:0回答:1

我需要重写NotificationStore的一些方法,所以我创建扩展Abp.Notifications.NotificationStore我自己的类

我应该在哪里告诉框架使用我的实现,而不是ABP模块零NotificationStore的。

我试着打电话给iocManager.register中的核心模块,但NotificationStore仍然被调用。

c# aspnetboilerplate
1个回答
0
投票

阅读关于Replacing Built-In Services的文档。

// using Abp.Configuration.Startup;

Configuration.ReplaceService<INotificationStore, MyNotificationStore>(DependencyLifeStyle.Transient);
© www.soinside.com 2019 - 2024. All rights reserved.