如果枚举值存储在列表中,CodeEffects RuleEditor 不会显示它们

CodeEffects RuleEditor doesn't display enum values if they are stored in a list

我更新了 the code effects angular code example,在 Patient 上添加了一个包含枚举列表的 属性

    [Field(DisplayName = "Favorite food", Description = "The patient's favorite food")]
    public List<Food> FavoriteFood { get; set; }

食物枚举的样子:

    public enum Food
    {
        Sandwich = 0,
        Apple = 1,
        Banana = 2,
        Noodles = 3,
        Candy = 4
    }

当我创建一个检查食物列表是否包含某些项目的执行规则时,保存规则时这些值不会显示在规则中。

保存时发送到控制器的方式是:

If Favorite food contain  and Favorite food do not contain  then Register with a Message ("Give&nbsp;apples&nbsp;instead&nbsp;of&nbsp;bananas")

规则 xml 已正确保存并按预期工作。我们想使用规则文本作为描述。我们怎样才能做到这一点?

请使用可用的最新版本的 Code Effects 规则编辑器脚本 here。这应该可以解决您的编辑器无法使用 load/display 枚举值的问题。

字符串参数中的解码值是一个已知问题,将在下周发布的下一个次要版本中解决。