对于在用于 SQLite 数据库的类中应该可以为空的列,是否可以通过附加“?”将该列标记为可以为空。
IOW,如果我希望“TimeOfTheSeason”可以为空,这是这样做的方法:
public class PlatypiRUs
{
[SQLite.PrimaryKey, AutoIncrement]
public int Id { get; set; }
public string PlatypusId { get; set; }
public string PlatypusName { get; set; }
public DateTime EOW { get; set; }
public DateTime? TimeOfTheSeason { get; set; }
}