我正在从目标 c 调用 .Net WCF 服务我必须将“类别”类型的对象传递给函数。在传递对象之前,我必须初始化它的“id”。这是代码:
SDZiPadDocSyncService *service = [[SDZiPadDocSyncService alloc]init];
service.logging = YES;
SDZCategory *cat = [[SDZCategory alloc]init];
cat.categoryId = [catId intValue];
[service getDocsByCatId:self action:@selector(getDocsByCatIdHandler:) category:cat];
当调用到达 SQL Server 时,categoryId 为 0。由于没有任何 Id=0 的类别,服务返回 0 条记录。有人可以帮我吗?