我已经在 Visual Studio 中生成了对 SDL Tridion 2011 SP1 上的 CD OData webservice 的服务引用,一切似乎都运行良好,但是当我使用如下代码请求特定组件时:
ContentDeliveryService cdService1 = new ContentDeliveryService(new Uri("http://xxx:81/odata.svc"));
var item = cdService1.Components.Where(p => p.ItemId == 29 && p.PublicationId == 1).First();
Console.WriteLine(item.ItemId);
它抛出异常:
The closed type ConsoleApplication1.CdService.Component does not have a corresponding IsMultimedia settable property.
有人知道这个热修复吗?