我正在使用 OData4ObjC,想知道有没有办法在不使用代理类的情况下添加/更新/删除表中的条目。就像 Android 的 OData4j 一样
例如,
OEntity havinaCola = c.getEntity("Products", 3).execute();
我目前正在使用代理类,如下所述,
proxy = [[serviceEntities alloc] initWithUri:@"sampleservices/producer.svc/" credential:nil];
QueryOperationResponse *response = [proxy execute:@"customers"];
NSMutableArray *array = [response getResult];
谢谢。