SQLite加入嵌入式数据库表

时间:2013-04-13 21:51:07

标签: c# sqlite join windows-store-apps sqlite-net

我目前正在为Windows 8编写一个Windows应用商店应用程序,我正在使用SQLite来保存Windows应用程序类库中的嵌入式数据库。我试图从我的嵌入式数据库中的两个不同表中加入数据,但SQLite不断从其GenerateCommand方法中抛出一个不受支持的异常。

我目前在两个表中都有数据,并且每个表中都有一个questionId可以加入。我尝试了两种不同的方法,它们都会抛出相同的错误。

第一种方法:

    var q = (from gameTable in db.Table<Model.GameSaved>()
                 join qTable in db.Table<Questions>() on gameTable.QuestionId equals qTable.QuestionId
                 select qTable
                ).First();

第二种方法:

    var q =
                (from question in db.Table<Model.GameSaved>()
                 select question
                ).Join(db.Table<Questions>(), 
                       game => game.QuestionId, 
                       questionObject => questionObject.QuestionId,
                       (game,questionObject) => questionObject)
                 .First();

我不确定我在这里缺少什么,但它必须是简单而明显的东西。

1 个答案:

答案 0 :(得分:11)

你没有遗漏任何东西。目前Sqlite-net不支持通过linq加入。您可以通过提供自己的SQL并使用Query方法来解决此问题。您上面的第一个查询看起来像是:

var q = db.Query<Questions>(
    "select Q.* from Questions Q inner join GameSaved G"
    + " on Q.QuestionId = G.QuestionId"
).First();

如果您愿意,Query方法也支持参数。来自Sqlite-net readme

db.Query<Val>(
    "select 'Price' as 'Money', 'Time' as 'Date' from Valuation where StockId = ?",
     stock.Id);