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]
public string ImageName { get; set; }
I'm using the insert command supplied with sqlite-net, and it works:
SQLiteAsyncConnection CurrentConnection = new SQLiteAsyncConnection("DB");
int result = await CurrentConnection.InsertAsync(this);
Afterwards, I'm trying to select data from the SQLite DB.
List<Image> result = new List<Image>();
if (ImageName != null)
{
query = CurrentConnection.Table<Image>().Where(i => i.ImageName == ImageName);
result = await query.ToListAsync();
}
if (ID != null && ID > 0)
{
query = CurrentConnection.Table<Image>().Where(i => i.ID == ID);
result = await query.ToListAsync();
}
if (result.Count > 0)
{
LoadFromResult(result[0]);
return;
}
When selecting by ImageName, all works well and I get the results I need. However, when trying to select by ID, no results are selected.
I know the image with the given ID exists since I've just inserted it and checked the ID afterwards, but for some reason this just does not work.
Am I completely blind and missed a small letter here? Has anyone used SQLite-net to try and select by Primary key?
//Edit
Also tried this, which did not work:
var query1 = await CurrentConnection.QueryAsync<Image>("select * from Image where ID = ?", ID);
if (query1.Count > 0)
{
LoadFromResult(query1[0]);
return;
}
//edit 2
I've got a bit of a hunch on this - when I insert the image, the ID does get set to some ID, however when I select all the images in the DB, all of them have an ID of 0.
Any idea on why this could happen?