fix(factory): return requested service from IServiceProvider in GetService method

This commit is contained in:
tekh 2025-10-23 09:49:38 +02:00
parent c538a8df8c
commit ddbb70081e

View File

@ -28,7 +28,7 @@ namespace DigitalData.Core.Abstractions
#endif
GetService(Type serviceType)
{
return _lazyServiceProvider.Value;
return _lazyServiceProvider.Value.GetService(serviceType);
}
#endregion