我有一个 EDS,它使用 DateTimes 查看事件列表,我想要一个查看某一天所有事件的 where 参数。
我想要一个看起来像这样的地方:
Where="it.EventStartDateTime = @testDate"
但由于EventStartDateTime
包含时间,而testDate
是唯一的日期,它们永远不会匹配。
我试过了
Where="it.EventStartDateTime.Date = @testDate"
但我收到一个关于Date
不在架构中的错误(?)
我试过了
Where="it.EventStartDateTime Like @testDate"
这也不起作用。
有谁知道如何做到这一点?
提前致谢