通用表达式过滤器

时间:2012-06-08 06:25:12

标签: c# linq generics expression

您好我希望有人可以提供以下指导:

我正在尝试创建一个使用反射的通用表达式过滤器,它可以接收一组规则并创建一个有效的表达式来限制从数据源返回的数据。

我遇到的问题是试图理解如何编写表达式来处理以下场景。

public class Item
{
    public string Name { get; set; }
    public List<TagTypes> TagTypes { get; set; }
}

public class TagTypes
{
    public string Name { get; set; }
    public List<Tags> Tags { get; set; }
}

public class Tags
{
    public string TagName { get; set; }
}

数据本质上看起来像

var itemList = new List<Item>
            {
                new Item
                {
                Name = "xyz",
                TagTypes = new List<TagTypes>
                    {
                        new TagTypes
                        {
                            Name = "Genre",
                            Tags = new List<Tags>
                                {
                                new Tags
                                    {
                                        TagName = "tag1"
                                    },
                                new Tags
                                    {
                                        TagName = "tag2"
                                    }        
                                }
                        }
                    }
               }

            };

我想写一个表达式,它返回与“Genre”过滤器匹配的所有项目 - &gt; 'TAG1'

我可以使用以下方法执行此操作:

var filtered = from item in itemList
from tagType in item.TagTypes
   where tagType.Name == "Genre"
      from tag in tagType.Tags
      where tag.TagName == "tag1"
select item

并且有一个基本的工作版本适用于Item类的属性但是我无法弄清楚如何在TagTypes及其下面执行SelectMany。

基本级别仅限于以下

var parameter = Expression.Parameter(typeof(T), "itemList");
var property = GetPropertyInfo<T>({Propertyname});
var propertyAccess = Expression.MakeMemberAccess(parameter, property);
Expression.Equal(propertyAccess, Expression.Constant({Value}));

修改

数据存储在NoSQL数据库中,过滤器是动态的,可以更改并添加到。

使用反射创建Genric过滤器的原因是为了适应不同的过滤器而不必知道它们是什么。用户可以使用过滤器ID请求数据,然后根据请求中的过滤器选择数据。

1 个答案:

答案 0 :(得分:0)

我认为你可能会因此而复杂化。

您只需撰写Expression<Func<Item>>Expression<Func<List<Item>>并选择Body媒体资源。

e.g。

 Expression<Func<List<Item>> createListOfItems = () => new List<Item>
        {
            new Item
            {
            Name = "xyz",
            TagTypes = new List<TagTypes>
                {
                    new TagTypes
                    {
                        Name = "Genre",
                        Tags = new List<Tags>
                            {
                            new Tags
                                {
                                    TagName = "tag1"
                                },
                            new Tags
                                {
                                    TagName = "tag2"
                                }        
                            }
                    }
                }
           }

        };