1

我有一个 fetch xml 查询,我想过滤带有日期和时间字段的记录。

我在或之前使用表达式,但这似乎只过滤日期(没有时间)。

FetchXml= ...
'<filter type="and">'+
'<filter type="or">'+
    '<condition attribute="scheduledend" value="'+ currentdate +'" operator="on-or-before"/>'+
    '<condition attribute="scheduledend" operator="null"/>'+
'</filter>'+
'</filter>'+
4

1 回答 1

1

您可以构建日期并将 0 影响到时间部分。是你想要的吗?

var date = Xrm.Page.getAttribute("createdon").getValue();
var d = new Date(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0, 0);
于 2013-03-14T15:08:03.913 回答