我在 hdbcds 中有两个实体:
context PyramidDB {
entity PipelineType {
key TypeName : String(200) not null;
Displayname : String(200) not null;
Description : String(300);
};
entity PyramidType {
key TypeName : String(200) not null;
Displayname : String(200) not null;
Description : String(500);
Channel : Boolean not null default false;
};
}
从两者中,我将拥有 OData 服务。xso数据:
service namespace "PyramidDBService.services" {
"PyramidDBService.db::PyramidsDB.PipelineType" as "PipelineType";
"PyramidDBService.db::PyramidsDB.PyramidType" as "PyramidType";
}
使用 PipelineType 没问题,但在 PyramidType 我得到一个错误:
{
"error": {
"code": 500,
"message": {
"lang": "en-US",
"value": "converter[index] is not a function"
}
}
}
有人能帮我吗?