使用Microsoft.Azure.Mobile.Server EntityData,我有一个类似于
的类public abstract class BaseItem : EntityData
{
public string Owner { get; set; }
public string Text { get; set; }
}
如何确保为所有者和文本编制索引?
更新。我想我可以添加[Index(IsClustered = false)]
答案 0 :(得分:0)
使用标准的实体框架语义。
public class BaseItem : EntityData
{
[Required]
[Index]
public string Owner { get; set; }
}
有关详细信息,请参阅http://www.entityframeworktutorial.net/code-first/dataannotation-in-code-first.aspx