Tagged Questions
The icriteria tag has no wiki summary.
15
votes
3answers
12k views
NHibernate - CreateCriteria vs CreateAlias
Assuming the following scenario:
class Project{
public Job Job;
}
class Job{
public Name;
}
Assuming I want to use the Criteria API to search for all projects whose Job has the name ...
11
votes
1answer
3k views
Lazy loading not working for many-to-one relationship when mapping to a non-key field using property-ref
I have a legacy database that I am mapping using NHibernate. The objects of concern are an Account and a list of Notification objects. The objects look like:
public class Notification
{
public ...
7
votes
4answers
1k views
NHibernate HQL vs CriteriaAPI vs QueryOver. Performance
What are the performance differences between the hql and criteriaApi and QueryOver? Are there any situations where one is faster or slower than the other?
Edit: I extended the question with ...
6
votes
1answer
1k views
Projections.Conditional - How to use it?
Anyone knows how to use Projections.Conditional to produce something like "case ... when..."
The following code gives a wrong query:
IProjection isError = Projections.Conditional( Expression.Eq( ...
6
votes
4answers
2k views
NHibernate How do I query against an IList<string> property?
I am trying to query against an IList<string> property on one of my domain classes using NHibernate. Here is a simple example to demonstrate:
public class Demo
{
public Demo()
{
...
5
votes
2answers
1k views
How do I select a Random Row using NHibernate's ICriteria API?
Can I select a random row using NHibernate's ICriteria API?
4
votes
2answers
2k views
NHibernate Query across multiple tables
I am using NHibernate, and am trying to figure out how to write a query, that searchs all the names of my entities,
and lists the results. As a simple example, I have the following objects;
public ...
4
votes
1answer
1k 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 p
How can I do this ...
4
votes
1answer
2k views
NHibernate - Implement “NOT IN” query using ICriteria
I've started getting to grips with NHibernate. I'm trying to perform a query that selects all records from a table but with an exclusion filter list of IDs, eg. get me all Products except these ones ...
4
votes
2answers
2k views
NHibernate Projections and “Having” clause
I'm using NHibernate to query my database with the criteria API. My criteria is below:
ICriteria c = Session.CreateCriteria(typeof(Transaction));
ProjectionList projections = ...
4
votes
2answers
3k views
How to set more than 2 Expression in Expression.Or
I want to create a query which has more than 3-4 Expression.Or ? But Expression.Or just let me to add two Expressions inside it.
if (!string.IsNullOrEmpty(keyword))
query
...
3
votes
4answers
152 views
NHIbernate: Shortcut for projecting all properties?
I'm trying to generate SQL along the lines of:
SELECT
t.*,
SELECT (...)
FROM Title t
[trimmed]
using QueryOver
Title title = null;
var q = session
.QueryOver(() => title)
.Select(
...
3
votes
1answer
656 views
NHibernate CreateAlias - Joins on arbitrary columns
This question seems to come up a bit and I've yet to see a good answer. I have two classes with no foreign key and no real relationship other than a common field, in this case "Title".
This is ...
3
votes
1answer
661 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
276 views
Reverse Expression.Like criterion
How should I go about writing a backwards like statement using NHibernate criteria?
WHERE 'somestring' LIKE [Property] + '%'
Sub Question:
Can you access the abstract root alias in a SQLCriterion ...
3
votes
2answers
270 views
Order by null/not null with ICriteria
I'd like to sort my result like this:
First I want all rows/objects where a column/property is not null, then all where the colmn/property is null.
Then I want to sort by another column/property.
...
3
votes
1answer
619 views
Where are the NHibernate/Hibernate HQL and ICriteria query examples?
I'm still quite new to NHibernate and most of it I'm getting to grips with. One area that I'm really lacking a proper understanding of though is querying (at least when it comes to anything ...
3
votes
3answers
580 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 ...
3
votes
1answer
2k views
Using NHibernate Criteria API to select specific set of data together with a count
I have the following domain set up for persistence with NHibernate:
I am using the PaperConfiguration as the root aggregate.
I want to select all PaperConfiguration objects for a given Tier and ...
3
votes
4answers
2k views
How to query a subproperty with NHibernate’s criteria api and the entity to load only the subproperties matching a predicate condition
Assuming the following:
public class Order
{
public virtual int OrderId {get;set}
public virtual ISet<Product> Products {get;set}
}
public class Product
{
public virtual int ...
3
votes
7answers
7k views
Querying on Collection with Nhibernate Criteria Api?
I have an "Estate" entity, and this entity has a collection "EstateFeatures"(type:EstateFeature) and EstateFeature has a property "MyFeatureValue".
Note: These are the limited properties for the ...
3
votes
2answers
3k views
HQL “Contains” statement howto?
I have an entity that has a string property called Tags. I would like to query this entity based upon if a certain string is located in Tags property.
So for example, I would have a function IList ...
3
votes
3answers
2k views
NHibernate Criteria: concatenating two columns with an IN Expression
This is the SQL that I want to accomplish:
WHERE domain_nm + '\' + group_nm in ('DOMAINNAME\USERNAME1','DOMAINNAME2\USERNAME2')
I can't for the life of me find an appropriate Expression for this. ...
2
votes
1answer
67 views
Why doesn't ICriteria pass variable value to the withClause?
I'm trying to restrict a left outer join with a simple restriction but it fails with an sql exception.
System.Data.SqlClient.SqlException: Must declare the scalar variable "@p1".
My ICriteria:
...
2
votes
1answer
50 views
How do I optimize ICriteria to select in NHIbernate?
First of all, I'm sure there must be a simple solution to this but I just can't find it. (Yes, I have googled it)
If I run this Criteria..
IList<Team> teams = ...
2
votes
1answer
201 views
Using Postgres aggregate functions with NHibernate
I have the following query:
SELECT title_id, title, array_agg(g.name)
FROM title t
INNER JOIN title_genre tg USING(title_id)
INNER JOIN genre g USING (genre_id)
GROUP BY title_id, title
ORDER BY ...
2
votes
1answer
136 views
Querying a many-to-many collection or how to include a many-to-many table in a criteria query?
I am quite new to the world of NHibernate and I can't seem to get this to work with the use of a criteria query: query a many-to-many relationship or query a collection (set/bag) on an entity. I've ...
2
votes
6answers
315 views
Are NHibernate ICriteria queries cached or put in the identity map?
Using NHibernate I usually query for single records using the Get() or Load() methods (depending on if I need a proxy or not):
SomeEntity obj = session.Get<SomeEntity>(new PrimaryKeyId(1));
...
2
votes
1answer
540 views
Order By Aggregate Subquery with NHibernate ICriteria or QueryOver
Is there a way to achieve SQL like this with NHibernate ICriteria or QueryOver?
select *
from [BlogPost] b
inner join (select blogpost_id, count(*) matchCount
from [Tag]
...
2
votes
2answers
332 views
ICriteria, add restriction on collection contents
Using NHibernate I'm trying to get obtain a list of B's where an IList property of B contains a specific instance of A.
The following code should hopefully explain the situation more clearly:
public ...
2
votes
1answer
793 views
How do I take the “top n” using NHibernate Criteria API?
How do I take the "top n" using NHibernate Criteria API? Ideally I'd like to use detached criteria.
2
votes
2answers
150 views
Which one have better performance?
I write same query with two approach by using NHibernate:
1- by using HQL like below
public long RetrieveHQLCount<T>(string propertyName, object propertyValue)
{
using (ISession session = ...
2
votes
1answer
844 views
nhibernate: query criteria for an entity and possibly a subclass in the same query
This is the setup for my 2 entities:
public class Person {
public Guid Id {get;set;}
public string Name {get;set;}
}
public class Immortal : Person {
public string DarkName {get;set;}
}
...
2
votes
1answer
135 views
NHLambdaExtensions: Create a Criterion object to add to ICriteria later
My application creates a dynamically generated query at runtime based on user input by creating Criterion objects e.g:
ICriterion criterion = Restrictions.Eq("Name", "John");
......
...
2
votes
1answer
749 views
Nhibernate ICriteria and Using Lambda Expressions in queries
hi i am new in NHibernate and i am a little confused.
Suppose we have a product table.
Let the product table have 2 columns price1 and price2.
then i may query mapped product entities via HQL as ...
2
votes
2answers
603 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 one for the count ...
2
votes
1answer
2k views
What's the difference/advantages between ICriteria and ICriterion in nHibernate?
Bit of a newbie question as Im getting started with nHibernate.
What's the difference between NHibernate.Criterion.ICriterion and NHibernate.ICriteria classes and which should I use for simple ...
2
votes
2answers
2k views
NHibernate ICriteria query with components and collections for advanced search
I'm building an advanced search form for my ASP.NET MVC app.
I have a Customer object, with an Address Component:
Fluent NHibernate mapping:
public CustomerMap()
{
...
2
votes
1answer
653 views
Nhibernate ICriteria API Reference
Is there any good ICriteria API overview? Chapter 12 from the official NHibernate reference is too short and I still don't have clear view of the ICriteria usage.
1
vote
1answer
40 views
Nhibernate ICRITERIA syntax
I have the following sql :
Select * from table where (Field1=1 and Field2=1) or (Field3=1)
How do i create the selection using NHibernate ICriteria
Regards Keld
1
vote
1answer
36 views
ICriteria Restriction on Expression
How should be written the following query with the NHibernate's ICriteria API:
DetachedCriteria criteria = DetachedCriteria.For<Order>()
.Add(Restrictions.Eq("Property1 + Property2", ...
1
vote
1answer
131 views
ICriteria - fluent nhibernate not producing inner join
I am developing a small web application, using nhibnerate as my DAL.
I have to classes that I wish to select from, using a simple ICriteria.
This is a sample of my code:
var criteria = ...
1
vote
1answer
120 views
How to write the following SQL query in NHibernate
Hey - I'm battling to figure out how to write the following using NHibernate ICriteria (Multi criteria?) for the following:
(It's a query to get a list of first names ordered by popularity in the ...
1
vote
1answer
344 views
NHibernate Paged Results & Incorrect Row Count
I have a model called 'BusinessPage' which can be associated with 1 or more 'BusinessPageCategories'. So I've got a 3rd table called 'BusinessPagesInCategories' that links these two.
I am trying to ...
1
vote
2answers
152 views
Can first level cache be used with ICriteria or other APIs?
In NHibernate you can easily benefit from first level cache when using Load or Get methods. But what about ICriteria, HQL, Linq-to-NHibernate and QueryOver? Do they use first level cache too?
1
vote
0answers
48 views
Count subentities
I have 2 simple entities:
public class MainEntity
{
public virtual int ID { get;set;}
public virtual string Name { get;set;}
public ...
1
vote
1answer
108 views
NHibernate ICriteria API: Retrievieng two objects without foreign key linking
Due to architectural considerations (separation into aggregates) I use the aggregate A which has a B_Id to entity B which should not be part of the A-aggregate.
The attribute B_Id of A is simply ...
1
vote
2answers
188 views
NHibernate many-to-many criteria
I have a list of questions, each linked to a list of tag.
And the following data :
Question1 : Tag1
Question2 : Tag1, Tag2
Question3 : Tag1, Tag2, Tag3
Question4 : Tag1, Tag3
The following ...
1
vote
0answers
68 views
query many-to-many nhibernate when only one side is mapped
I have the following entities
public class Client
{
public virtual int Id{get;set;}
public virtual IList<Telephone> Telephones { get; private set; }
}
public class User
{
public ...
1
vote
1answer
172 views
NHibernate: Querying with OR operator
I am looking for a way to build an OR operator into a query to look for a particular value in one field of a table as well as in another field of a joined table. This is pretty basic in SQL, but I ...