I'm using SQLite in a Windows 8 application I'm running and was wondering if there was any sort of performance issue between using the following two lines of code:
conn.Table<Chemistry>().Where(ch => ch.case_id == CaseId).ToListAsync();
vs
conn.QueryAsync<Chemistry>("SELECT * FROM Chemistry WHERE Case_Id = ?", CaseId);
They both work and I prefer to use the lambda expression as opposed to the string query. Just wondering if there are any repercussions when doing this.