首页 > 解决方案 > 如何按日期的一部分动态过滤

问题描述

如果我想在动态查询中构建特定规则,其中部分条件声明

一年中的同一个月

我有以下数据源:

List<Excuse> li = new List<Excuse>();
li.Add(new Excuse { EmpNum = 3333, ExcuseDate = DateTime.Today, ExcuseDuration = new TimeSpan(0, 30, 0), ExcuseType = 0, Id = 1 });
li.Add(new Excuse { EmpNum = 3333, ExcuseDate = DateTime.Today.AddDays(1), ExcuseDuration = new TimeSpan(2, 30, 0), ExcuseType = 0, Id = 2 });
li.Add(new Excuse { EmpNum = 3333, ExcuseDate = DateTime.Today.AddDays(2), ExcuseDuration = new TimeSpan(2, 0, 0), ExcuseType = 0, Id = 3 });
li.Add(new Excuse { EmpNum = 2345, ExcuseDate = DateTime.Now, ExcuseDuration = new TimeSpan(0, 30, 0), ExcuseType = 0, Id = 4});

如何写这样的东西:

var langExp = "YEAR(ExcuseDate) = @1 AND MONTH(ExcuseDate) = @2 AND emp_num = @3";
var query1 = li.AsQueryable().Where(langExp, 2019,5,3333);

我想要类似的方法Year() or Month()或等效的方法来做类似的事情。

标签: c#linqdatetimedynamic-linqdynamic-linq-core

解决方案


这应该很容易与动态 LINQ 一起工作:

var langExp = "ExcuseDate.Year = @0 && ExcuseDate.Month = @1 && EmpNum = @2";
var query1 = li.AsQueryable().Where(langExp, 2019, 5, 3333);

推荐阅读