我有以下课程:
public class Note : TableServiceEntity
{
public Note( )
{
}
public Note(string pK)
{
PartitionKey = pK,
RowKey = Seq.GetSequence().ToString();
}
public string Description { get; set; }
}
我需要的是将RowKey设置为序列生成的值。任何人都可以解释如何使用构造函数执行此操作?我得到的是语法错误:Virtual member call in constructor
。
答案 0 :(得分:0)
public static class Seq
{
static int index;
public static int GetSequence()
{
return index++;
}
}
public class Note : TableServiceEntity
{
public Note(string partitionKey, string rowKey)
: base(partitionKey, Seq.GetSequence().ToString()) { }
}