我应该使用什么类?
public class Category
{
public int Id {get;set;}
public int IdParent {get;set;}
public string Title {get;set;}
}
or
public class Category
{
public int Id {get;set;}
public Nullable<int> IdParent {get;set;}
public string Title {get;set;}
}
考虑到自动增量从 1 开始,并且类别可以没有父类别。