queryover
Are there any arithmetic operation projections in NHibernate?
I would like to get this SQL from NHibernate: SELECT SUM(color_pages) * SUM(total_pages) FROM connector_log_entry[详细]
2023-02-07 11:30 分类:问答What reference I need to use NHibernate QueryOver?
I can\'t find out what namespace reference is needed to use NHibernate\'s QueryOver? How do you find out this type of things anyway? Is t开发者_运维问答here any searchable documentation where I \"sho[详细]
2023-02-07 07:47 分类:问答NHibernate 3. Alternatives to "ThenFetch" in QueryOver
I\'m using NHibernate 3.0 with both the LINQ provider and QueryOver. Sometimes I want to eager load related data, and there comes the method \"Fetch\" to the rescue, both in LINQ and QueryOver. Now I[详细]
2023-02-06 23:29 分类:问答nHibernate Dynamic Joins with QueryOver
I\'m wanting to create a generic method for List() with nHibernate and QueryOver. I\'ve got it to a point where I wanted to add joins but I don\'t think I can without specifying the generic type that[详细]
2023-02-06 11:13 分类:问答NHibernate Reusable QueryOver
To keep my queries self-contained and potentially reu开发者_Python百科sable, I tended to do this in NH2:[详细]
2023-02-04 13:31 分类:问答NHibernate QueryOver , JoinAlias problem
I\'m pretty new to Nhibernate and QueryOver techniques. Peace if I\'m asking som开发者_JAVA百科e basic things ;)[详细]
2023-02-04 12:25 分类:问答How to get a distinct result with nHibernate and QueryOver API?
I have this Repository method public IList<Message> ListMessagesBy(string text, IList<Tag> tags, int pageIndex, out int count, out int pageSize)[详细]
2023-02-03 08:37 分类:问答NHibernate 3.0: No FirstOrDefault() with QueryOver?
I am playing with FluentNHibernate and NH 3.0, using the LINQ provider and the new QueryOver syntax.[详细]
2023-02-02 03:19 分类:问答queryover and (x like 'a' or y like 'a')
Hi Is there any elegant way of combining \'like\' and \'or\' when i\'m using queryover API? for \'like\' there is something like:[详细]
2023-02-01 03:35 分类:问答nhibernate queryOver projection syntax
I am trying some code out from a 开发者_高级运维NH 3.0 Cookbook, and wondering why I can\'t get the code below to compile. I think the QueryProjectionBuilder that should make this work is in \"NHibern[详细]
2023-01-31 12:09 分类:问答