Dependency injection / IoC in Workflow Foundation 4

后端 未结 1 471
小蘑菇
小蘑菇 2020-12-31 09:01

Is it possible to use DI in your workflow activities? and if yes, how?

For example if you have an activity like

public sealed class MyActivity : Code         


        
相关标签:
1条回答
  • 2020-12-31 09:34

    Workflow doesn't use an IOC container. It uses the ServiceLocator pattern where you add dependencies to the workflow runtime as extensions and workflow activities and retrieve these services from the workflow extensions through the context.

    A ServiceLocator and IOC pattern are similar and have the same purpose in decoupling dependencies. The apporach is different though in an IOC container pushing dependencies in while a ServiceLocator is used to pull dependencies out.

    Example activity:

    public class MyBookmarkedActivity : NativeActivity
    {
        protected override void CacheMetadata(NativeActivityMetadata metadata)
        {
            base.CacheMetadata(metadata);
            metadata.AddDefaultExtensionProvider<MyExtension>(() => new MyExtension());
        }
    
        protected override void Execute(NativeActivityContext context)
        {
            var extension = context.GetExtension<MyExtension>();
            extension.DoSomething();
    
        }
    }
    

    The MyExtension class is the extension here and it has no base class or interface requirements.

    0 讨论(0)
提交回复
热议问题