Visual Studio에서 SDL Tridion 2011 SP1의 CD OData webservice에 대한 서비스 참조를 생성했으며 모든 것이 올바르게 작동하는 것처럼 보였습니다. 그러나 특정 구성 요소를 요청하면 이 :닫힌 유형 구성 요소에 해당 IsMultimedia 설정 가능 속성이 없음
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.
는 사람이 핫픽스이를 알고 있나요
?
에
public global::System.Nullable<bool> Multimedia
속성을 변경하는 것입니다 ... –