0
我在C#中使用了ArangoDB.Client。 我正在創建資源類並將ResourceId和Locale設置爲組合鍵。如何在ArrangoDB創建複合鍵
public class Resource
{
[Key, Column(Order = 1)]
public Guid ResourceId {get; set;}
[Key, Column(Order = 2)]
[MaxLength(5)]
public string Locale {get; set;}
public string ResourceName {get; set;}
}
上課不起作用。我必須按照以下方式使用,並要求將ResourceId和Locale結合起來保存爲關鍵字。
public class Resource
{
[DocumentProperty(Identifier = IdentifierType.Key)]
public string Key { get; set; }
public Guid ResourceId {get; set;}
[MaxLength(5)]
public string Locale {get; set;}
public string ResourceName {get; set;}
}
請指教任何其他的想法!
''ResourceId''類型是'Guid',它本身已經是唯一的,爲什麼要將它與'Locale'結合呢? –