I am using C# and SQLite for a Database for a Windows-8-Metro-App. I want to use a Join-Command, but don\'t know how to read the given back data. This will not work:
var db = new SQLiteAsyncConnection(_dbPath);
var query = from person in await db.Table().ToListAsync()
join job in await db.Table().ToListAsync()
on person.JobID = job.ID
select new
{
Name=person.Name
};