如何使用 Castle ActiveRecord 获取最新对象
我有一个 OrderDetails 对象表,我想获取数据库中最新订单的 OrderNumber,即具有最高 OrderDetailsID 的订单。 在 SQL 中我可以执行以下操作:
按 OrderDetailsID desc 从 orderdetails order 中选择前 1 个 OrderNumber
我如何使用 ActiveRecord 获得相同的结果,我应该在 FindOne(...) 调用中指定什么条件?
I've got a Table of OrderDetails objects and I'd like to get OrderNumber of the latest Order in the database i.e. the Order with the highest OrderDetailsID.
In SQL I can do the following:
select Top 1 OrderNumber from orderdetails order by OrderDetailsID desc
How would I go about getting the same thing using ActiveRecord, what Criteria should I be specifying in FindOne(...) call?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不能再短了:)你也可以这样做:
I can't make it any shorter :) you could also do: