查询多个表 SQLite Windows 10 UWP

本文关键字:Windows UWP SQLite 查询 | 更新日期: 2023-09-27 18:30:57

我正在开发一个带有SQLite数据库的Windows 10 UWP应用程序。我需要从多个表中检索数据。我已经有以下代码从单个表中获取数据,但是需要一个自定义对象,该对象的数量和名称与相关表的列完全相同。

public ObservableCollection<Employee> GetEmployees()
{
    using (var dbConn = new SQLiteConnection(new SQLite.Net.Platform.WinRT.SQLitePlatformWinRT(), App.DB_PATH))
    {
        List<Employee> myCollection = dbConn.Table<Employee>().ToList<Employee>();
        ObservableCollection<Employee> EmployeesList = new ObservableCollection<Employee>(myCollection);
        return EmployeesList;
    }
}

我也知道可以使用以下代码查询表,但仍然只能从单个表查询。

public ObservableCollection<Question> GetQuestionsForAssessment(int assessment_id)
{
    using (var dbConn = new SQLiteConnection(new SQLite.Net.Platform.WinRT.SQLitePlatformWinRT(), App.DB_PATH))
    {
        List<Question> myCollection = dbConn.Query<Question>("select * from Question where AssessmentId = ?", assessment_id);
        ObservableCollection<Question> QuestionsList = new ObservableCollection<Question>(myCollection);
        return QuestionsList;
    }
}

那么有人知道如何从多个表中查询吗?谢谢

查询多个表 SQLite Windows 10 UWP

没有什么可以阻止你编写带有连接的查询:

using (var db = new SQLiteConnection(new SQLitePlatformWinRT(), App.DB_PATH))
{
    var result = db.Query<PersonWithAddress>(
        @"SELECT Person.Id, Person.Name, Person.Surname, 
            Address.Street, Address.City, Address.Country
        FROM Person INNER JOIN Address ON Person.AddressId = Address.Id;");
}

您确实需要一个包含来自多个表的字段的类,以将结果映射到:

private class PersonWithAddress
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string Surname { get; set; }
    public string Street { get; set; }
    public string City { get; set; }
    public string Country { get; set; }
}

或者,您可以尝试SQLite-Net Extensions,它增加了对实体之间关系的支持。不过,我从来没有用过它。