问题标签 [queryover]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
nhibernate - NHibernate 未来使用 Get()
如何通过 Get() 使用 Future 延迟执行以检索单个记录(或 Load()?)
另外,我可以将 Future 与分离的 QueryOver 一起使用吗
nhibernate - NHibernate QueryOver 与 MaxResult、Group By 和 Order By
我正在尝试将 SQL 查询转换为 NHibernate QueryOver 语法,但我不明白如何按计数投影进行排序。
这是 SQL 查询的样子:
有任何想法吗?
nhibernate - 休眠查询
嗨如何对同一张表使用查询(加入)...示例
当我尝试运行时,我收到路径重复的消息。
nhibernate - NHibernate QueryOver: Get a row count with group by in a subquery
I'm trying to get a count from a query with a group by and just can't figure out how to translate the SQL I want into NHibernate's QueryOver syntax.
This is the SQL:
Seems simple right?
This is how I'm trying to do it, but the RowCount() call seems to optimize the group by away completely:
I wouldn't mind using Criteria for this, but I'm excited about the new (to me) QueryOver API that lets me get away from magic strings.
Update:
I'm unable to use generated SQL that does a distinct query within a count (e.g. select count(distinct Email)) as this app runs on SQL CE.
See: http://social.msdn.microsoft.com/Forums/en-US/sqlce/thread/80a1d7dd-22be-4583-b8f2-fcd8cde5ec53/ and http://our.umbraco.org/wiki/install-and-setup/sql-server-ce-4-known-issues ("Distinct in count is not supported", about 2/3 of the way down the page)
nhibernate - QueryOver - JoinQueryOver 问题
i 如何对同一张表使用 queryover (Join) ...示例
当我尝试运行时,我收到路径重复的消息。我使用别名正确吗?什么问题?有理想吗?例外是“重复的关联路径”
nhibernate - NHIbernate:投影所有属性的快捷方式?
我正在尝试按照以下方式生成 SQL:
使用 QueryOver
我要投影的 Title 中有 15 个属性。有没有更简单的方法,这样我就不必像上面开始做的那样单独投影每个属性?
castle-activerecord - 如何访问 NHibernate.IQueryOver在 ActiveRecord 中?
我主要使用 DetachedCriteria,它有一个静态方法 For 来构造一个实例。不过好像IQueryOver更优惠,我想用一下。
获取 IQueryOver 实例的正常方法是 Isession.Query,我想用 ActiveRecord 优雅地获取它,有人知道方法吗?谢谢。
c# - NHibernate - 根据子属性过滤掉结果
我有这段代码与他们的孩子一起获取所有启用的组。我遇到的问题是孩子也可以被禁用,但我无法流畅地休眠以仅获取所有孩子都启用的组。我认为这是可能的,但如何?
编辑:儿童和群体之间存在 N:M 关系。
以下是我使用的解决方案:
c# - NHibernate 对引用实体的限制查询
我将 Nhibernate 与 SQL Server 2008 一起使用。
我正在尝试执行以下代码:
但是,我在该行上遇到一个异常,说 nhibernate 无法解析属性 Language.IETFTag (或类似的东西)。
我曾尝试使用 JoinQueryOver() 但它抱怨我在 FROM 子句中有多个相关性或类似的奇怪东西。只是觉得我做错了什么。我怎样才能做我想做的事?
我有以下映射: