【问题标题】:WF 4.5. Using C# expressions with external class referencesWF 4.5。将 C# 表达式与外部类引用一起使用
【发布时间】:2024-01-18 00:54:01
【问题描述】:

我正在尝试使用新的 WF 4.5 功能 - C# 表达式来编译动态活动。 在我在表达式中添加一个外部类之前它一直有效。

如果表达式包含基本对象,则符合。 如果我添加对外部类的引用,则会生成错误“找不到类型或命名空间名称 'xxxxx'(您是否缺少 using 指令或程序集引用?)”

那么,问题是如何为 C# 表达式引用外部类?

附:它适用于 VisualBasic 表达式类型

谢谢

//Compiled without errors
var errorCodeWorkflow = new DynamicActivity
{
    Name = "DynamicActivity",
    Implementation = () => new WriteLine
    {
        Text = new CSharpValue<String>
        {
            ExpressionText = "new Random().Next(1, 101).ToString()"
        }
     }
};

CompileExpressions(errorCodeWorkflow);
WorkflowInvoker.Invoke(errorCodeWorkflow);


//Error 

using System;
using System.Activities;
using System.Activities.Expressions;
using System.Activities.Statements;
using System.Activities.XamlIntegration;
using System.Collections.Generic;
using System.Linq;
using Microsoft.CSharp.Activities;

namespace CSharpExpression 
{
    class Program
    {
        static void Main()
        {
            var errorCodeWorkflow = new DynamicActivity
            {
                Name = "MyScenario.MyDynamicActivity3",
                Properties =
                {
                    new DynamicActivityProperty
                    {
                        Name = "Address",
                        Type = typeof(InArgument<MailAddress>),
                    },
                },
                Implementation = () => new WriteLine
                {
                    Text = new CSharpValue<String>
                    {
                        ExpressionText = "\"MyDynamicActivity \" + Address.DisplayName"
                    }
                }
            };

            CompileExpressions(errorCodeWorkflow);
            WorkflowInvoker.Invoke(errorCodeWorkflow, new Dictionary<String, Object> { { "Address", new MailAddress { DisplayName = "TestDisplayName" } } });
        }

        static void CompileExpressions(DynamicActivity dynamicActivity)
        {
            var activityName = dynamicActivity.Name;
            var activityType = activityName.Split('.').Last() + "_CompiledExpressionRoot";
            var activityNamespace = string.Join(".", activityName.Split('.').Reverse().Skip(1).Reverse());

            var settings = new TextExpressionCompilerSettings
            {
                Activity = dynamicActivity,
                Language = "C#",
                ActivityName = activityType,
                ActivityNamespace = activityNamespace,
                RootNamespace = "CSharpExpression",
                GenerateAsPartialClass = false,
                AlwaysGenerateSource = true,
                ForImplementation = true
            };

            var results = new TextExpressionCompiler(settings).Compile();

            if (results.HasErrors)
            {
                throw new Exception("Compilation failed.");
            }

            var compiledExpressionRoot = Activator.CreateInstance(results.ResultType, new object[] { dynamicActivity }) as ICompiledExpressionRoot;
            CompiledExpressionInvoker.SetCompiledExpressionRootForImplementation(dynamicActivity, compiledExpressionRoot);
        }
    }

    public class MailAddress
    {
        public String Address { get; set; }
        public String DisplayName { get; set; }
    }
}

【问题讨论】:

    标签: c# workflow-foundation


    【解决方案1】:

    我在使用非动态活动时遇到了相同的问题,现在已经检查了使其工作所需的条件:

    总结

    1. 添加对System.Xaml的引用

    2. MailAddress 移动到不同的命名空间。

    3. Dynamic Activity 添加一些关于您的课程来自哪里的信息:

    var impl = new AttachableMemberIdentifier(typeof(TextExpression), "NamespacesForImplementation");
    var namespaces = new List<string> { typeof(MailAddress).Namespace };
    TextExpression.SetReferencesForImplementation(dynamicActivity, new AssemblyReference { Assembly = typeof(MailAddress).Assembly });
    AttachablePropertyServices.SetProperty(dynamicActivity, impl, namespaces);
    

    为了得到这个答案,我需要在TextExpressionCompiler 源中进行挖掘,这样可能会有更优雅的东西。


    非动态活动

    如果您不使用动态活动,则对 CompileExpressions 的调用将按此处所述进行更改:http://msdn.microsoft.com/en-us/library/jj591618.aspx

    向活动添加信息将通过删除“ForImplementation”部分进行修改:

    var impl = new AttachableMemberIdentifier(typeof(TextExpression), "Namespaces");
    var namespaces = new List<string> { typeof(MailAddress).Namespace };
    TextExpression.SetReferences(nonDynamicActivity, new AssemblyReference { Assembly = typeof(MailAddress).Assembly });
    AttachablePropertyServices.SetProperty(nonDynamicActivity, impl, namespaces);
    

    工作代码

    using System;
    using System.Activities;
    using System.Activities.Expressions;
    using System.Activities.Statements;
    using System.Activities.XamlIntegration;
    using System.Collections.Generic;
    using System.Linq;
    using System.Xaml;
    using ExternalNamespace;
    using Microsoft.CSharp.Activities;
    
    namespace CSharpExpression 
    {
        class Program
        {
            static void Main()
            {
                var errorCodeWorkflow = new DynamicActivity
                {
                    Name = "MyScenario.MyDynamicActivity3",
                    Properties =
                    {
                        new DynamicActivityProperty
                        {
                            Name = "Address",
                            Type = typeof(InArgument<MailAddress>),
                        },
                    },
                    Implementation = () => new WriteLine
                    {
                        Text = new CSharpValue<String>
                        {
                            ExpressionText = "\"MyDynamicActivity \" + Address.DisplayName"
                        }
                    }
                };
    
                var impl = new AttachableMemberIdentifier(typeof(TextExpression), "NamespacesForImplementation");
                var namespaces = new List<string> { typeof(MailAddress).Namespace };
                TextExpression.SetReferencesForImplementation(errorCodeWorkflow, new AssemblyReference { Assembly = typeof(MailAddress).Assembly });
                AttachablePropertyServices.SetProperty(errorCodeWorkflow, impl, namespaces);
    
                CompileExpressions(errorCodeWorkflow);
                WorkflowInvoker.Invoke(errorCodeWorkflow, new Dictionary<String, Object> { { "Address", new MailAddress { DisplayName = "TestDisplayName" } } });
            }
    
            static void CompileExpressions(DynamicActivity dynamicActivity)
            {
                var activityName = dynamicActivity.Name;
                var activityType = activityName.Split('.').Last() + "_CompiledExpressionRoot";
                var activityNamespace = string.Join(".", activityName.Split('.').Reverse().Skip(1).Reverse());
    
                var settings = new TextExpressionCompilerSettings
                {
                    Activity = dynamicActivity,
                    Language = "C#",
                    ActivityName = activityType,
                    ActivityNamespace = activityNamespace,
                    RootNamespace = "CSharpExpression",
                    GenerateAsPartialClass = false,
                    AlwaysGenerateSource = true,
                    ForImplementation = true
                };
    
                var results = new TextExpressionCompiler(settings).Compile();
    
                if (results.HasErrors)
                {
                    throw new Exception("Compilation failed.");
                }
    
                var compiledExpressionRoot = Activator.CreateInstance(results.ResultType, new object[] { dynamicActivity }) as ICompiledExpressionRoot;
                CompiledExpressionInvoker.SetCompiledExpressionRootForImplementation(dynamicActivity, compiledExpressionRoot);
            }
        }
    }
    
    namespace ExternalNamespace
    {
        public class MailAddress
        {
            public String Address { get; set; }
            public String DisplayName { get; set; }
        }
    }
    

    【讨论】:

    【解决方案2】:

    听起来你需要一个 using 语句来指定外部类所在的命名空间。

    例如:

    使用我的命名空间;

    【讨论】:

    • 由 C# Compiler 编译。这一行 var results = new TextExpressionCompiler(settings).Compile();产生错误
    最近更新 更多