6 Answer(s)
-
0
Hi , Try move your settingProvider to
.Application.Contracts
project. -
0
@liangshiwei I tried move my settingProvider to .Application.Contracts project. but it still not show in module DDC.Core. Can you show me more details?
-
0
Hi
I see your debug project is
.IdentityServer
project, Did you call theDDC.Core
module in this project?If so, your need add
BackendServiceApplicationContractsModule
to this project module class dependencies, becauseSettingDefinitionManager
getSettingDefinition
from Dependency injection container. -
0
I'm working on microservice project, I have microservice A, microservice B, microservice C. I defined settings for all 3 microservices and now I'm creating a Setting UI to discover all settings from 3. For example, my microservice A is included all AbpTable, with B and C is not included AbpTable otherwise it is included business tables. When I defined all settings in each module, I need to discover it without adding Depends On each other How can I get that ?
-
0
currently can't to get the setting definition without dependency. But you can directly inject
ISettingRepository
in your service. -
0
thank you so much