如何通过nhibernate / Fluent nHibernate使用MYSQL BIT_COUNT函数?

发布于 2024-11-01 01:13:29 字数 490 浏览 0 评论 0原文

我正在做一些巫术,需要使用 c#/linq/fluid-nhibernate 通过 bit_count 运算符对结果进行排序。

这是我当前的订单声明:

orderby m.InitiatorInventory & wanted descending

我真正想要的是这样的

orderby BIT_COUNT(m.InitiatorInventory & wanted descending)

这是Mysql函数:

http://dev.mysql.com/doc/refman/5.0/en/bit-functions.html#function_bit-count

I'm doing some voodoo, and need to order my results by a bit_count operator using c#/linq/fluent-nhibernate.

here's my current order statement:

orderby m.InitiatorInventory & wanted descending

What I really want is something like this

orderby BIT_COUNT(m.InitiatorInventory & wanted descending)

This is the Mysql function:

http://dev.mysql.com/doc/refman/5.0/en/bit-functions.html#function_bit-count

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

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

发布评论

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

评论(1

依 靠 2024-11-08 01:13:29

您可以使用 CreateSQLQuery 或在 NHibernate 中注册您自己的 BIT_COUNT 方言:

public class MyDialect : MySqlDialect
{
    public MyDialect()
    {
        RegisterFunction("bit_count", new StandardSQLFunction("bit_count", null));
    }
}

更多信息 此处

You could either use CreateSQLQuery or you can register your own BIT_COUNT dialect in NHibernate:

public class MyDialect : MySqlDialect
{
    public MyDialect()
    {
        RegisterFunction("bit_count", new StandardSQLFunction("bit_count", null));
    }
}

More information here.

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