我想在注册汤时为智能商店中的自定义关系对象设置索引规范。
指数空间
private static IndexSpec[] POA_INDEX_SPEC =
{new IndexSpec("Id", Type.string), new IndexSpec("Name", Type.string)};
如何设置自定义关系对象?我想在索引规范中设置 Machine__r.Name 。
感谢任何帮助。
答案 0 :(得分:0)
我还可以将自定义关系对象添加到IndexSpec数组中。 这是解决方案。
private static IndexSpec[] POA_INDEX_SPEC =
{new IndexSpec("Id", Type.string), new IndexSpec("Name", Type.string),new IndexSpec("Machine__r.Name", Type.string)};