使用 Castle ActiveRecord 获取当前数据库服务器日期

发布于 2024-10-15 12:09:13 字数 173 浏览 2 评论 0原文

我找到了 解决方案,但我不知道如何翻译这些解决方案(在 NHibernate 中)到 ActiveRecord。

I found the solution, but I don't know how to translate those solution (in NHibernate) to ActiveRecord.

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

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

发布评论

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

评论(2

悍妇囚夫 2024-10-22 12:09:13

您可以创建一个本机查询,而不是使用命名查询(我什至不确定 Castle 是否支持),这在我看来本质上是相同的。

    public static DateTime FindServerDateTime()
    {
        return Helper.GetSession()
            .CreateSQLQuery("select getdate()")
            .UniqueResult<DateTime>();
    }

Helper.GetSession() 替换为您用于获取 Castle AR 会话的任何函数或属性。

Instead of using a named queries (which I'm not even sure if Castle supports) you could create a native query which is essentially the same thing IMO.

    public static DateTime FindServerDateTime()
    {
        return Helper.GetSession()
            .CreateSQLQuery("select getdate()")
            .UniqueResult<DateTime>();
    }

Replace Helper.GetSession() with whatever function or property you use to fetch the Castle AR session.

自在安然 2024-10-22 12:09:13

仅供记录,Castle ActiveRecord 确实支持 HQL 和 SQL 命名查询(分别使用 [HqlNamedQuery][SqlNamedQuery]),请参阅 本文。对于这个特殊情况,我同意 Mike 的观点,只需使用简单的 SQL 查询即可。

Just for the record, Castle ActiveRecord does support HQL and SQL named queries (with [HqlNamedQuery] and [SqlNamedQuery] respectively), see this article. For this particular case, I agree with Mike, just use a simple SQL query.

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