WCF RIA - 一对多,仅返回第一行

发布于 2024-12-02 10:23:56 字数 243 浏览 2 评论 0原文

您好,我有以下关系:

return this.ObjectContext.PCRs.Include("PApproval").Include("Details").Include("PApproval.PStatus");

“PApproval”表包含多于一行,但是是否可以根据最新日期(列上次更新时间)仅从该表中获取第一条记录。这样做的原因是我可以绑定到我的 DXGrid,从而能够显示最新的批准状态

Hi I have the following relationships:

return this.ObjectContext.PCRs.Include("PApproval").Include("Details").Include("PApproval.PStatus");

"PApproval" table contains more then one row, however is it possible to only get the first record from that table based on the latest date(column Last Updated on). Reason for this is so I can bind to my DXGrid, being able to show the latest approval status

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

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

发布评论

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

评论(1

篱下浅笙歌 2024-12-09 10:23:56

您可以尝试对结果进行排序,使最新的记录位于最前面,然后仅选择第一条记录。

return this.ObjectContext.PCRs.Include("PApproval").Include("Details").Include("PApproval.PStatus").OrderByDescending(x => x.LastUpdatedOn).First();

You can try to order the results so the newest record will be first, then only select the first record.

return this.ObjectContext.PCRs.Include("PApproval").Include("Details").Include("PApproval.PStatus").OrderByDescending(x => x.LastUpdatedOn).First();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文