SQLite Join in Windows 8 Metro C# with sqlite-net(使用 sqlite-net 在 Windows 8 Metro C# 中加入 SQLite)
问题描述
我将 C# 和 SQLite 用于 Windows-8-Metro-App 的数据库.我想使用 Join-Command,但不知道如何读取给定的返回数据.这不起作用:
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:
db.Query<Person>("SELECT * FROM Person, Job WHERE Person.JobID = Job.ID");
这并没有实现:
db.Query<Person, Job>("SELECT * FROM Person, Job WHERE Person.JobID = Job.ID");
有人知道怎么做吗?
推荐答案
连接很好,如果过时 - 你应该使用更新的语法
The join is fine, if antiquated - you should use the newer syntax
SELECT * FROM Person INNER JOIN Job ON Person.JobID = Job.ID
您的问题在于您要返回的内容 - 您要返回 Person 数据和 Job 数据 - 因此您需要创建一个与您要返回的数据结构相匹配的类 - 或者只返回一个人或一份工作.
Your problem is in what you are returning - you are returning both Person data and Job data - so you need to create a class that matches the data structure that you are returning - or return just a person, or a job.
db.Query<Person>("SELECT Person.* FROM Person INNER JOIN Job ON Person.JobID = Job.ID");
db.Query<Job>("SELECT Job.* FROM Person INNER JOIN Job ON Person.JobID = Job.ID");
这篇关于使用 sqlite-net 在 Windows 8 Metro C# 中加入 SQLite的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 sqlite-net 在 Windows 8 Metro C# 中加入 SQLite
基础教程推荐
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- SSE 浮点算术是否可重现? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01