0
votes
2answers
70 views
closures mean fully type-safe criteria?
combining closures (FCM) and generics, would it be possible to have fully type-safe criteria.
// The following works without a cast as Foo.id is a 'long' field.
List<Long> i …
1
vote
0answers
18 views
Hibernate Second-Level Query Cache not working Eager Fetching
In NHibernate Profiler I observed that when I use eager fetching on an association, using "left join fetch" in an HQL Query or .SetFetchMode() in a Criteria Query the query no long …
0
votes
1answer
22 views
NHibernate search specific subclass
Is it possible to filter on a particular joined-subclass in NHibernate?
For example, I have the following classes:
Pet { Name }
Cat: Pet { Paws }
Budgie: Pet { Wings }
Person { P …
0
votes
0answers
29 views
NHibernate: Convert an ICriteria to a DetachedCriteria
Anyone know how to convert an ICriteria into a DetachedCriteria. I need to use an existing ICriteria as part of a subquery using:
.Add(Subqueries.PropertyIn("Name", myDetachedCri …
2
votes
5answers
103 views
Adding a projection to an NHibernate criteria stops it from performing default entity selection
I'm writing an NHibernate criteria that selects data supporting paging. I'm using the COUNT(*) OVER() expression from SQL Server 2005(+) to get hold of the total number of availabl …
1
vote
1answer
16 views
NHibernate Criteria Query - Select Distinct with Joined Entity
I have a Person entity. Every person has a country, I want to select all the distinct countries that have people in them. This Criteria Query returns all the distinct CountryID's
…
0
votes
2answers
34 views
Removing Order from NHibernate Criteria Query
I have a criteria query that I am using to show pages of results. I also need to obtain the total count of all items. Rather than have two queries, one for paging the results and …
0
votes
1answer
19 views
NHibernate Criteria Query - Select Distinct
I have a Person entity belongs to a person has a Country, I want to select all the distinct countries that have people in them. Easy in HQL
select distinct p.Country from Person …
1
vote
2answers
113 views
Hibernate Subquery Question
This should be a simple one I hope.
I have an invoice and that invoice has a list of payments.
Using the Criteria API I am trying to return a list of invoices and their payment t …
0
votes
0answers
30 views
NHibernate Criteria using Projections for Substring with in clause
I had a scenario in Oracle where i neeed to match a substring part of column with a list of values. i was using sqlfunction projection for applying the substring on the required co …
1
vote
1answer
20 views
NHibernate Select in From Case
Hello
I have problems with a query in NHibernate.
The original SQL query looks like
SELECT Id
,Table1_Id
,Table2_Id
,Table3_Id
FROM (
SELECT Id
,Table1_Id
…
0
votes
1answer
37 views
nhibernate cross table query optimization
I have a query I've written with NHibernate's Criteria functionality and I want to optimize it. The query joins 4 tables. The query works, but the generated SQL is returning all …
0
votes
0answers
6 views
Using CreateCriteria and selecting row based on maxvalue
Hi,
I want to select a row from one table in the database using CreateCriteria where I have a know value for a column, not primary key so there will be multiple rows matching. Th …
0
votes
1answer
33 views
NHibernate Lambda Extensions - Eager Loading a collection’s assosciations
I've got a Criteria Query for a social networking site. A Person object has a collection of Friends (also person objects). The query grabs the first N friends, but I also want to …
0
votes
1answer
23 views
Nhibernate criteria query - ordering a collection
I have a Person class. A person class contains a collection of Friends (also Person objects). A person class also has a LatestLogin property which is the LatestLogin time.
For …
