在LINQ中我想要跟随查询:
_tareaRepositorio.ObtenerTodo() .Where( x => Convert.ToDateTime(x.FechaCreacion.ToString("d")) >= fechaInicial && Convert.ToDateTime(x.FechaCreacion.ToString("d")) <= fechaFinal).ToList();
LINQ to Entities does not recognize the method ‘System.DateTime ToDateTime(System.String)’ method,and this method cannot be translated into a store expression.
我怎么解决这个问题?
编辑
麻烦的是我需要比较日期,而不是时间……
解决方法
试试这个
编辑:添加DbFunctions.TruncateTime()以获得所需的效果
_tareaRepositorio.ObtenerTodo() .Where( x => DbFunctions.TruncateTime(x.FechaCreacion) >= fechaInicial && DbFunctions.TruncateTime(x.FechaCreacion) <= fechaFinal) .ToList();
您获得的异常是因为Convert.ToDateTime是一个无法转换为sql的.NET方法.通常这应该在查询实现之后完成(即在Where之前使用.ToList())但在特定情况下它是不必要的,因为可以使用> =和< =来比较DateTime对象,并且实体框架可以转换它到sql成功 现在,如果您只想比较Datetime的Date部分,可以使用位于System.Data.Entity命名空间内的方法DbFunctions.TruncateTime().此方法将允许EF在sql中正确截断日期