public class Task : IBusinessEntity
{
public Task () {}
[PrimaryKey, AutoIncrement]
public int ID { get; set; }
public string Name { get; set; }
public string Notes { get; set; }
public bool Done { get; set; }
}
是[PrimaryKey, AutoIncrement]
C# 中的索引器吗?
此代码适用于 SQLlite-NET。
索引是定义在IBusinessEntity
其中还是继承自什么?