我正在尝试根据列表ID获取与每个列表实体关联的注释实体(注释)。按日期创建的降序排序时,我想要前1条记录。为此,我在JavaScript的按钮点击事件中使用oDATA查询编写了下面的RESTfull调用。
function Button1_onclick() {
var filterCriteria = "$select=notetext&$top=1&$orderby=createdon&$expand=List_Annotation&$filter=List_Annotation/ListId eq '" + document.getElementById("Text1").value + "'";
SDK.JQuery.retrieveMultipleRecords(
"Annotation",
filterCriteria,
function (results) {
if (results != null) {
alert("Success.");
}
else {
alert("No notes available.");
}
},
errorHandler,
function () {
//OnComplete handler
}
);