subsonic 3.0.0.3 activeRecord 之间

发布于 2024-08-11 05:30:54 字数 320 浏览 8 评论 0原文

你好,我使用 subsonic 3.0.0.3 activeRecord 但似乎无法计算!

select * from orders where orderdate between startdate, enddate;

已尝试过IQueryable; myOrders = order.All().Where(x => x.order_date).isBetweenAnd

非常感谢您的帮助,请记下版本号,并且任何答案实际上都适用于该版本 和活动记录。

谢谢

Hi im using subsonic 3.0.0.3 activeRecord but cant seems to figure between !

select * from orders where orderdate between startdate, enddate;

have tried IQueryable<orders> myOrders = order.All().Where(x => x.order_date).isBetweenAnd

help much appreciated, please make note of version number, and that any answers actually work for that version
and activeRecord.

thanks

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

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

发布评论

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

评论(1

三寸金莲 2024-08-18 05:30:54

尝试:

order.All().Where(x => x.order_date >= Min_Date && x.order_date <= Max_Date);

try:

order.All().Where(x => x.order_date >= Min_Date && x.order_date <= Max_Date);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文