Tagged Questions
2
votes
1answer
252 views
No results from SQLite when trying to select by PrimaryKey using sqlite-net
For this example, I've defined the following class, which is saved inside an SQLite database:
[SQLite.AutoIncrement, SQLite.PrimaryKey, SQLite.Indexed]
public int ID { get; set; }
[SQLite.Indexed]
...