1

我有一种情况需要对查询应用一些过滤器,所以我有一个代表过滤器的类:

public class ReportNoteFilterDto
{
    public int Year { get; set; }
    public int Month { get; set; }
}

我需要根据这个过滤器选择数据。

var query = _db.User;

if (filter.Month > 0 && filter.Month <= 12)
    query.Select(u => new {
        User = u,
        Notes = u.Notes.Where(n => n.Begin.Month == filter.Month)
    });

if (filter.Year > 2011)
    query.Select(u => new
    {
        User = u,
        Notes = u.Notes.Where(n => n.Begin.Year == filter.Year)
    });

var results = query.Include("Notes.Foo.Bar").ToList(); //doesn't work

我也需要选择 Notes.Foo.Bar。

我怎样才能做到这个多重过滤器?

4

1 回答 1

1

您没有将第一个查询的结果分配给query变量

你可以在这里看到一个类似的问题是如何解决的:

class Program
{
    //A simple class to hold the results
    public class Result
    {
        public string Item { get; set; }

        public IQueryable<string> Collection { get; set; }
    }

    static void Main(string[] args)
    {
        var list1 = new List<Result>();
        var objects = list1.Select(o => new Result { Item = o.Item, Collection = o.Collection.Where(a=> a.Length == 10) });
        if(true)
           objects = objects.Select(o => new Result { Item = o.Item, Collection = o.Collection.Where(a=> a.Length > 15) });
    }
}
于 2012-12-03T19:32:44.197 回答