数据权限条件表达式,第二数据源从HttpItems取值,当前用户改用userId
using System; using System.Collections; using NewLife.Data; namespace NewLife.Cube.Extensions { class ItemsExtend : IExtend { public IDictionary Items { get; set; } public Object this[String key] { get => Items[key]; set => Items[key] = value; } } }