我的课程User
内嵌了课程Social
。 Social
具有属性vk
,fb
,因此我的结构类似于:
User {
@class: User
social: {
@class : Social
"vk":"123",
"fb":"456"
}
}
如何创建索引,我可以在选择时使用它:select from User where social.vk = '123'
答案 0 :(得分:1)
为类的属性创建索引,而不是为嵌入的属性创建索引,因此不可能。
我们可以创建两个单独的类User
和Social
以及索引:
create class User
create class Social
create property Social.vk string
create property User.social LINK Social
create index User.social unique
create index Social.vk unique
现在select from User where social.vk = '123'
使用索引
如果我错了,请告诉我。