WCF RIA - 一对多,仅返回第一行
您好,我有以下关系:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试对结果进行排序,使最新的记录位于最前面,然后仅选择第一条记录。
You can try to order the results so the newest record will be first, then only select the first record.