我想知道是否有人可以对此提供任何指示。我正在尝试从 Tridion UGC Web 服务返回 ItemStats,但在尝试绑定结果时出现以下错误:-
封闭类型 TridionWebUGC.CDS.ItemStat 没有对应的 LastRatedDate 可设置属性。
代码示例是:-
WebServiceClient ugcCall2 = new WebServiceClient();
Uri uri = new Uri("http://new.ugc.service/odata.svc");
CDS.ContentDeliveryService cds = new CDS.ContentDeliveryService(uri);
var myItemStats = cds.ItemStats.Where(p => p.PublicationId == 68 && p.Id == 17792 && p.Type==16);
我可以毫无问题地获得评论和评分。例如
var myComments = cds.Comments.Where(p => p.ItemId == 17805).OrderBy(p => p.CreationDate);
只是 ItemStats 给了我一个问题。有人有什么想法吗?
谢谢
约翰