I would like to get this SQL from NHibernate: SELECT SUM(color_pages) * SUM(total_pages) FROM connector_log_entry
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
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
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
To keep my queries self-contained and potentially reu开发者_Python百科sable, I tended to do this in NH2:
I\'m pretty new to Nhibernate and QueryOver techniques. Peace if I\'m asking som开发者_JAVA百科e basic things ;)
I have this Repository method public IList<Message> ListMessagesBy(string text, IList<Tag> tags, int pageIndex, out int count, out int pageSize)
I am playing with FluentNHibernate and NH 3.0, using the LINQ provider and the new QueryOver syntax.
Hi Is there any elegant way of combining \'like\' and \'or\' when i\'m using queryover API? for \'like\' there is something like:
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