nhibernate-criteria
NHibernate - fetching with futures
I have this Fluent NHibernate mapping: public LossMap() { Table(\"losses\"); Id(x => x.Id).Column(\"id\");[详细]
2023-04-10 21:22 分类:问答Loading multi-level collections without duplicates in NHibernate
My question is very similar to this one (that wasn\'t really answered): Nhibernate: distinct results in second level Collection[详细]
2023-04-09 10:18 分类:问答nHibernate: Using entity-name with QueryOver and CreateCriteria
I have two hbm.xml mappingfiles. They are identical except for the class table and class entity-name properties. They are supposed to populate the same Entity.[详细]
2023-04-06 11:17 分类:问答NHibernate FetchMode Cartesian Product
In my object graph, VendorServiceRateChange has a lazy loaded property IList<VendorService> VendorServiceList and the VendorService has a lazy loaded property IList<ClientService>.[详细]
2023-04-06 03:44 分类:问答NHibernate QueryCache in Multiuser-Environment
For our web-application (ASP.NET) we\'re using Fluent NHibernate (2.1.2) with 2nd-Level cach开发者_开发技巧ing not only for entities, but also for queries (generating queries with the criteria API). W[详细]
2023-04-05 07:35 分类:问答How to fetch objects multiple levels deep and wide with NHibernate?
I have a case where I need to load about 10 000 objects from database. The data model is something like this:[详细]
2023-04-04 02:52 分类:问答How to get the value from a subquery in NHibernate?`
I\'m currently building a message board where I need to output the number of messages in a Thread. ID Name[详细]
2023-04-03 11:31 分类:问答Fluent nhibernate problem, query
I\'d really appreciate some help with a problem I have. Class L holds a collection of R and R holds a collection of Q.[详细]
2023-03-31 04:53 分类:问答NHibernate query to fetch top(x) entities for a given List property
I\'m having difficulties figuring out how to do the following. Given the following classes: public class Post[详细]
2023-03-27 08:09 分类:问答Return TSubType from nhibernate QueryOver
I am trying to select the children from a parent collection using QueryOver in nhibernate. This is what I am trying to do in HQL:[详细]
2023-03-21 23:16 分类:问答