queryover
Using the NHibernate QueryOver, how can you add a type-safe restrictions between dates
Considering the following QueryOver (quarter and centre are variables passed in): QueryOver.Of<Activity>()[详细]
2023-03-10 08:29 分类:问答How to implement a search query in NHibernate 3 (using NHibernate.Linq)
I\'m trying to build a search query using NHibernate that will filter on parameters from several different tables and result in somewhat-reasonable SQL t开发者_开发问答hat can take advantage of NHiber[详细]
2023-03-10 01:14 分类:问答Sql to NHibernate QueryOver
How can I Convert this SQL to NHibernate QueryOver ? select k1.Id,k.sm from tblKarbarg_1 k1 inner join ([详细]
2023-03-08 17:32 分类:问答NHibernate QueryOver<> problem return a parent collection of a child entity
I have a parent entity Category_Types with a collection of child entities Categories each one of these child entities has a collection of child ent开发者_Go百科ities Expenses:[详细]
2023-03-08 15:35 分类:问答fetching multiple nested associations eagerly using nhibernate (and queryover)
I have a database which has multiple nested associates.Basically, the structure is as follows: Order -> OrderItem -> OrderItemPlaylist -> OrderPlaylistItem -> Track -> Artist[详细]
2023-03-08 13:48 分类:问答Flitering an object child collection by a property using Fluent nHibernate
Please excuse my ignorance, I am new to nHibernate and am having a conceptual problem trying to filtering an child collection with an nHibernate query[详细]
2023-03-08 09:08 分类:问答NHibernate QueryOver subcollection using Max
I have classes public class BlogPost { public int Id {get;set;} public string Body{get;set;} public IList<Comment> Comments{get;set;}[详细]
2023-03-06 11:23 分类:问答QueryOver with Select and OrderBy in NHibernate
I am wondering how do I order a group of results after a select with QueryOver. My query is the following:[详细]
2023-03-06 08:46 分类:问答NHibernate select column with SqlFunction, group by same criteria
I need to query for a count based on each day as well as group by the same criteria. The generated query should look similar to[详细]
2023-03-06 04:27 分类:问答Can I use SQL functions in NHibernate QueryOver?
I have been searching the internet and can\'t find an example on how to use the queryover of nhibernate 3.0[详细]
2023-03-05 16:38 分类:问答