Tagged Questions
The detachedcriteria tag has no wiki summary.
6
votes
2answers
410 views
How can I express joining to a grouped subquery using NHibernate?
I'm trying to express a SQL query using NHibernate's Criteria API, and I'm running into difficulty because I'm thinking in a database-centric way while NHibernate is object-centric.
SQL (works ...
4
votes
3answers
167 views
I have expired problems with LikeExpression in hibernate(hibernate 3.5.5)
Looks like it does not work with ignorCase.
The first assert returns true. Second - false. Any Ideas?
EntityManager entityManager = (EntityManager) applicationContext.getBean("entityManager");
...
4
votes
1answer
1k views
Hibernate Criteria: Add restrictions to Criteria and DetachedCriteria
Currently our queries add a variety of Restrictions to ensure the results are considered active or live. These Restrictions are used in several places/queries so a method was setup similar to
public ...
3
votes
1answer
673 views
NHibernate: what's the differense between DetachedCriteria and ICriteria
this classes have some similar methods but seems to work slightly different. What's the difference of them and when should I use each of them?
3
votes
1answer
1k views
Retrieving Polymorphic Hibernate Objects Using a Criteria Query
In my model I have an abstract "User" class, and multiple subclasses such as Applicant, HiringManager, and Interviewer. They are in a single table, and I have a single DAO to manage them all.
User:
...
3
votes
2answers
6k views
Hibernate Criteria: Perform JOIN in Subquery/DetachedCriteria
I'm running into an issue with adding JOIN's to a subquery using DetachedCriteria. The code looks roughly like this:
Criteria criteria = createCacheableCriteria(ProductLine.class, "productLine");
...
3
votes
3answers
584 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", myDetachedCriteriaSubquery))
Is ...
2
votes
1answer
129 views
Detached criteria on composite PK fields?
I have a table with 3 columns as primary key. Code and mapping is as follows:
class for the composite key
public class CIDResultCurrentState implements Serializable
{
private static final long ...
2
votes
1answer
281 views
Hibernate criteria: why no Subqueries.isNull(DetachedCriteria)?
I want to translate a script like this into criteria:
SELECT ...
FROM A
WHERE
A.some_date > (select bdate from B where ...)
OR (select bdate from B where ...) IS NULL
So, an A should be ...
2
votes
1answer
692 views
Using DetachedCriteria to return generic list of non-AR type
I'm fiddling with my repository class and attempted to execute a query with a detached criteria. However, it doesn't seem to like me setting the result transformer to a non AR-type.
public class ...
2
votes
0answers
250 views
Using an interface for a subquery in NHibernate
I normally query interfaces using DetachedCriteria in NHibernate:
DetachedCriteria crit = DetachedCriteria.For<IParent>();
And this works fine.
I now want to create a subquery for a child ...
2
votes
1answer
530 views
NHibernate: getting multiple entities with subset of child collection?
My classes look something like this (I include only the relevant properties):
public class Order
{
public virtual Customer Customer { get; set; }
public virtual IEnumerable<OrderLine> ...
2
votes
1answer
2k views
Nhibernate DetachedCriteria Left Outer Join on subquery
I'll only try to present the main part of the problem, because the whole situation is much more complicated - I am unable to achieve the following with DetachedCriteria
SELECT *
FROM User
LEFT OUTER ...
1
vote
1answer
46 views
Criteria subquery with not null
I want to convert the following subquery to use hibernate subquery:
getCurrentSession().createQuery("from Employee where id in (select adminId from Department where adminId is not null)")
...
1
vote
1answer
74 views
Filter contents of lazy-loaded collection with NHibernate
I have a domain model that includes something like this:
public class Customer : EntityBase<Customer>, IAggregateRoot
{
public IList<Comment> Comments { get; set; }
}
public class ...
1
vote
1answer
43 views
How to write Hibernate query for collections Set
I have following Entity
@Entity
public class Employee{
private Integer id;
private String name;
private String address;
private Date created;
@OneToMany(mappedBy = "employee")
...
1
vote
2answers
288 views
Create dynamic hibernate criteria query with subcriteria
I have java class with have some field marked as @SearchCriteria(criteria = "class1.class2.field"). "criteria" option inside annotation mean for with class this field should be set as hibernate ...
1
vote
2answers
71 views
Call a Stored Procedure with a DetachedCriteria?
Is it possible to construct a DetachedCriteria in nHibernate which queries a stored procedure? How would I accomplish such a task?
1
vote
0answers
661 views
Combining Restrictions and Projections on DetachedCriteria
I have problem with combining Restrictions and Projections on DetachedCriteria.
If I use only Restriction or Projections separately the program works.
How can I combine those two together?
I have ...
1
vote
1answer
276 views
How do I get hql string from DetachedCriteria
I'd like to get hql request from DetachedCriteria. Is there any right way of doing it(I mean toString is not right)?
1
vote
1answer
401 views
Hibernate select groupProperty , rowCount with rowCount > n?
Sorry if it is a dumb question but I've stuck with this problem for a whole afternoon but cannot find a solution because I'm not skilled with complicated SQL :
I want to find "Top n message-sending ...
1
vote
1answer
2k views
Hibernate LEFT OUTER JOIN with DetachedCriteria
I am trying to transform the following SQL into Hibernate DetachedCriteria:
SELECT
students0_.courseId AS courseId2_1_,
students0_.studentId AS studentId1_,
student1_.id AS id3_0_,
...
1
vote
1answer
254 views
How to make a join using hibernate
I have a question regarding join between 2 entities using hql.
Starting on a userProfile, I have to retrieve the name of the role associated to this userProfile. So I need to make a join in order to ...
1
vote
1answer
273 views
hibernate: using criteria to access objects within objects
I am using criteria to get a list of notifications that contains users that are active. The problem is that i get the following error:
org.hibernate.QueryException: could not resolve property: ...
1
vote
1answer
263 views
What is IDetachedQuery and its difference with DetachedCriteria?
What is IDetachedQuery and its difference with DetachedCriteria? How and when IDetachedQuery is used?
UPDATE:
I'm using NHibernate 2.1.2.4000
1
vote
1answer
334 views
JPA 2 Remote Criteria?
Is there any way that Criteria for qureies can be built on a remote (Swing/SWT etc) client? We've been using the DetachedCriteria functionality in Hibernate for quite some time, but would like to use ...
1
vote
1answer
84 views
What is the preferred way of using unsupported SQL functions or clauses with Castle/NHibernate?
I modeled all of my tables and already ported most of my queries using detached criteria's. All is working very well however I'm at a point where I don't know how to advance. I have a sub-query that ...
1
vote
2answers
132 views
Search for a property in Hibernate after aplying a function
In my db I store telephone numbers of things as input by the user (I want to let user decide how he format their phone number)
when users search for a phone number they most likely wont format the ...
1
vote
2answers
453 views
Is it possible to unit test methods that rely on NHibernate Detached Criteria?
I have tried to use Moq to unit test a method on a repository that uses the DetachedCriteria class. But I come up against a problem whereby I cannot actually mock the internal Criteria object that is ...
1
vote
1answer
535 views
Nhibernate join on a table twice
Consider the following Class structure...
public class ListViewControl
{
public int SystemId {get; set;}
public List<ControlAction> Actions {get; set;}
public ...
1
vote
1answer
382 views
Need help optimizing a NHibernate criteria query that uses Restrictions.In(..)
I'm trying to figure out if there's a way I can do the following strictly using Criteria and DetachedCriteria via a subquery or some other way that is more optimal. NameGuidDto is nothing more than a ...
1
vote
1answer
4k views
Hibernate Subquery and DetachedCriteria
I have created a DetachedCriteria that is retrieving estates that have the isApproved and isPublished set to true. It is defined in this way:
DetachedCriteria activePublishedCriteria = ...
1
vote
0answers
880 views
Enum mapping and criteria
I have two entities: "Parent" & "Child"
Child is mapped in Parent like this:
Code:
<many-to-one name="child" class="org.demo.Child"
update="false" insert="false" embed-xml="false" ...
1
vote
1answer
777 views
Filtering NHibernate SubType with ICriterion
Is there any way I can filter my NHibernate query on the SubType field before I hit the database by adding an ICriterion to my executing DetachedCriteria?
My code looks something like this:
...
1
vote
1answer
694 views
(Detached)Criteria equivalent for HQL's 'index' function
I have an IDictionary on an object which I'm loading with the following mapping:
public class InternalFund : IInternalFund
{
public virtual IDictionary<DateTime, IValuation> Valuations { ...
1
vote
2answers
4k views
Restrictions.Disjunction() between condition a AND condition b OR condition c AND condition d
How can I create a disjunction in NHibernate that would accomplish the following sql:
Select * from MyTable
Where (conditionA = true AND conditionB = true)
OR (conditionC = true AND ...
0
votes
1answer
47 views
Grails : from HQL to DetachedCriteria Query
Let say I have the following domain model :
class Book {
String title
Set authors
static hasMany = {authors: Author}
}
class Author {
String name
}
The HQL query to retrieve a collection ...
0
votes
1answer
36 views
Hibernate using DetachedCriteria with interfaces
Using Hibernate 3.6.8.Final and Spring 3.0.5.RELEASE , I'm trying to add some Common DAO functionality for classes that have multiple implementations overridden higher up to implement the specific ...
0
votes
0answers
54 views
Castle ActiveRecord .net C# how to implement IndexOf
I would like to implement IndexOf for ActiveRecord mapped class by using ordering and custom filtering criteria something like this:
long MyEtityType.IndexOf(
MyEntityType myEntityInstance,
...
0
votes
1answer
74 views
NHibernate SetFetchMode doesn't work with nested criteria
Assuming I run the following code:
var placementCriteria = DetachedCriteria.For<ResidentialPlacementClientService>();
placementCriteria.Add(Restrictions.Le("StartDate", effectiveDate));
...
0
votes
0answers
124 views
Querying Hibernate Parent/Child with Subquery Criteria
EDIT: relevant: https://forum.hibernate.org/viewtopic.php?f=1&t=946236&start=0 but still no solution there.
I have a parent/child relationship. The parent maps a set of string tags. The ...
0
votes
1answer
151 views
one-to-many detached Criteria parent table fetch based on child table
i have one problem in one-to-many mapping using hibernate.
i have 2 classes, Person and Address. Person is mapped by Address ( one-to-many)
i want get all Person where Address = "xxxx";. how to ...
0
votes
0answers
322 views
Hibernate Criteria: performing left outer join in Subquery and DetachedCriteria
I have three entities
@Entity
@Table(name = "PRODUCT")
@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name="ProductType",discriminatorType=DiscriminatorType.STRING
)
public ...
0
votes
0answers
64 views
problem in creating in query using detachcriteria
i am trying to get a list of customers like based on sql below
SELECT * FROM dbo.customer
WHERE customer_id IN (SELECT customer_id FROM dbo.customer_policy WHERE policy_no = 'CP200720110')
now i ...
0
votes
2answers
172 views
Error when using DetachedCriteria for both Count and Findall in Castle Activerecord
Guys,
I've got this problem that I searched almost everywhere (maybe I don't know the right keyword for it.) I need your help!
The relationship is quite simple, I have two Activerecord Domain: Team ...
0
votes
1answer
123 views
Translating to detachedCriteria
How can I translate the following query to detachedCriteria:
select * from (
select a.* ,row_number() over (partition by hotel_id order by EXECUTION_START_DATE desc) rnk
from ...
0
votes
1answer
133 views
Exclude property from detachedCriteria query
I am using the following DetachedCriteria:
DetachedCriteria subCr = DetachedCriteria.For<Packages>();
...
0
votes
1answer
300 views
Filtering objects using ActiveRecord,NHibernate, DetachedCriteria
C# 3.0, Nhibernate 2.1.2 , Castle ActiveRecord 2.1, WinXP 32
I have a problem filtering elements with ActiveRecord and DetachedCriteria.
There are 2 tables one contains the objects to be filtered ...
0
votes
1answer
221 views
Hibernate Criteria, Select order according to newest events
I have classes in hibernate like this:
@Entity
class Order{
private MyPattern pat;
@Id
private int id;
@OneToMany(cascade = CascadeType.ALL)
@JoinColumn(name = "order_id")
...
0
votes
1answer
86 views
How to compare only the MM/dd/yyyy part of two dates with a detached criteria?
I have to dates in my query: ExpectedEnd and TerminationDate.
I need to find a query that returns records whenever the ExpectedEnd is at the same day as TerminationDate.
How can it be done using ...