|
|
|
@ -85,10 +85,10 @@ public abstract class AbpComponentBase : OwningComponentBase |
|
|
|
|
|
|
|
if (ObjectMapperContext == null) |
|
|
|
{ |
|
|
|
return LazyGetRequiredService(ref _objectMapper)!; |
|
|
|
return LazyGetNonScopedRequiredService(ref _objectMapper)!; |
|
|
|
} |
|
|
|
|
|
|
|
return LazyGetRequiredService( |
|
|
|
return LazyGetNonScopedRequiredService( |
|
|
|
typeof(IObjectMapper<>).MakeGenericType(ObjectMapperContext), |
|
|
|
ref _objectMapper |
|
|
|
)!; |
|
|
|
|