在字典中搜索匹配列表


public class Filter
{
    public List<int> A { get; set; }
    public DateTime Start { get; set; }
    public DateTime End { get; set; }
}
var f1 = new Filter(){A = new List<int>() {1}}
var f2 = new Filter(){A = new List<int>() {1 , 4, 2}, Start = DateTime.Now, End = DateTime.AddHour(2)}
var dict = new Dictionary<Filter, string>()
dict.Add(new Filter(){A = new List<int>() {1}}, "asdf");
dict.Add(new Filter(){A = new List<int>() {4}}, "qwerty");
dict.Add(new Filter(){A = new List<int>() {3}}, "qwertyasd");

我需要得到:

首先f1项目

首先和第二f2项目。

如何构造 linq 查询?

A int时,很简单

dict.Where(k =>
k.Key.A.Equals(filter.A)
&& k.Key.Start.CompareTo(filter.Start) > 0 
&& k.Key.End.CompareTo(filter.End) < 0
)

但是当它List<int>时,对我来说就更复杂了。

只需使用包含并反转控件

dict.Where(k =>
    filter.A.Contains(k.Key.A[0]) //CONTAINS !
    && k.Key.Start.CompareTo(filter.Start) > 0 
    && k.Key.Start.CompareTo(filter.End) < 0
)
您可以使用相

交方法

dict.Where(k =>
            k.Key.A.Intersect(filter.A).Any()
            && k.Key.Start.CompareTo(filter.Start) > 0
            && k.Key.End.CompareTo(filter.End) < 0
        );

编辑:添加了Intersect,因为涉及两个列表。

如果 Filter.A 的至少一个元素必须与字典的一个元素匹配。Key.A,你也可以做。

因为我看不到拥有列表的兴趣...只需一个整数!

var result = dict.Where(k =>
                           filter.A.Intersect(k.Key.A).Any());

相关内容

  • 没有找到相关文章

最新更新