gpt4 book ai didi

c# - System.Linq.Dynamic 和 DateTime

转载 作者:可可西里 更新时间:2023-11-01 08:16:21 25 4
gpt4 key购买 nike

我正在使用 System.Linq.Dynamic 在 .Net MVC 1.0 中执行来自 ajax 调用的自定义 where 子句。

它适用于字符串、整数等,但不适用于 DateTime,我得到异常无法将 String 与 DateTime 进行比较。非常简单的测试代码是

items = items.Where(string.Format(@"{0} > {1}{2}{1} ", searchField, delimiter, searchString));

例如,searchField 是 start_date,数据类型是 DateTime,分隔符是 "(也没有尝试过),searchString 是 01-Jan-2009(也尝试过 01/01/2009),items 是来自 LinqToSql 的 IQueryable。

有没有办法在动态 where 中指定数据类型,或者有更好的方法。它目前已经在使用一些反射来确定需要哪种类型的定界符。

最佳答案

我认为您可以将 searchString 转换为 DateTime 并将其作为参数传递给动态 where 方法本身。

itmes = items.Where( string.Format( "{0} > @0", searchField ),
DateTime.Parse( searchString ) );

关于c# - System.Linq.Dynamic 和 DateTime,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1389850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com