使用 linq 从 SQL Server 数据库中选择两个对象

发布于 2024-12-19 18:51:33 字数 508 浏览 0 评论 0原文

我有以下 Log 表,

int LogID
text Name
datetime CreationTime
text Content
int CreatorID

我尝试获取由具体 Creator 创建的所有日志

Creator creator = myDataContext.Creator.Single<Creator>(cr => cr.Name == name);
var query = (from l in myDataContext.Log
            where l.CreatorID == creator.CreatorID
            select l).ToList<Log>();

,但在返回的列表中 Creator 为空。

如何获取给定 Creator 的日志列表?

I've got the following Log table

int LogID
text Name
datetime CreationTime
text Content
int CreatorID

I try to get all the logs created by a concrete Creator

Creator creator = myDataContext.Creator.Single<Creator>(cr => cr.Name == name);
var query = (from l in myDataContext.Log
            where l.CreatorID == creator.CreatorID
            select l).ToList<Log>();

but in the returned list the Creator is null.

How can I get a list of logs for a given Creator?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱要勇敢去追 2024-12-26 18:51:33

您需要设置 LoadOptions:

DataLoadOptions dataLoadOptions = new DataLoadOptions();
dataLoadOptions.LoadWith<Log>(l => l.Creator);
myDataContext.LoadOptions = dataLoadOptions;

You need to set LoadOptions:

DataLoadOptions dataLoadOptions = new DataLoadOptions();
dataLoadOptions.LoadWith<Log>(l => l.Creator);
myDataContext.LoadOptions = dataLoadOptions;
蓝颜夕 2024-12-26 18:51:33
var logs = myDataContext.Logs.Include("Creator").Where(c => c.Creator.Name == name).ToList();
var logs = myDataContext.Logs.Include("Creator").Where(c => c.Creator.Name == name).ToList();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文