Hi there
This one creates a table with 2 columns (I'm using the SQLite.Net-PCL Package).
[Table ("Table")]
public class Table
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
public DateTime Created { get; set; }
}
But the following one creates only one column. I guess it's because "private" access modifier.
[Table ("Table")]
public class Table
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
private DateTime created;
}
But how can I do this anyway? I need this. Is there an official documentation?
Best regards,
Zak