I've seen that if i want to make a linq query using sqlite-net if i do:
var query = conn.Table<TableName1>().Where(x => x.Field=="Val1");
i can apply a where to the select; is it possible to do something similar for more than 1 table, applying a join between TableName1 and TableName2 ? If it is possible, which is the right syntax for the linq query?