The queryover tag has no wiki summary.
39
votes
1answer
1k views
How can I recreate this complex SQL Query using NHibernate QueryOver?
Imagine the following (simplified) database layout:
We have many "holiday" records that relate to going to a particular Accommodation on a certain date etc.
I would like to pull from the database ...
19
votes
1answer
3k views
What is the difference between JoinQueryOver and JoinAlias?
I need to know what is the difference between JoinQueryOver and JoinAlias, and when to use each?
thanks.
17
votes
3answers
2k views
queryover and (x like 'a' or y like 'a')
Hi
Is there any elegant way of combining 'like' and 'or' when i'm using queryover API?
for 'like' there is something like:
query.WhereRestrictionOn(x=>x.Code).IsLike(codePart)
for 'or' i can ...
10
votes
3answers
806 views
specifying fetch strategy (select, join, etc) in nhibernate queryover query
I am trying to create a query using QueryOver, which will fetch a collection using the Select or SubSelect mode. The entity in question is Track. I want to load a collection called TrackPrices, and ...
8
votes
1answer
168 views
How can you avoid NHibernate N+1 with composite key
EDIT I remade an entire project for this one problem. And thus, I remade the question.
I want to be able to efficiently avoid N+1 and Cartesian joins joining together a 4 level deep entity with a ...
8
votes
2answers
1k views
NHibernate lazy loading nested collections with futures to avoid N+1 problem
I have an object model that looks like this (pseudo code):
class Product {
public ISet<Product> Recommendations {get; set;}
public ISet<Product> Recommenders {get; set;}
...
7
votes
3answers
3k views
NHibernate 3. Alternatives to “ThenFetch” in QueryOver
I'm using NHibernate 3.0 with both the LINQ provider and QueryOver. Sometimes I want to eager load related data, and there comes the method "Fetch" to the rescue, both in LINQ and QueryOver. Now I ...
7
votes
4answers
3k views
How to get a distinct result with nHibernate and QueryOver API?
I have this Repository method
public IList<Message> ListMessagesBy(string text, IList<Tag> tags, int pageIndex, out int count, out int pageSize)
{
pageSize = 10;
...
7
votes
1answer
2k views
nhibernate queryOver projection syntax
I am trying some code out from a NH 3.0 Cookbook, and wondering why I can't get the code below to compile. I think the QueryProjectionBuilder that should make this work is in ...
6
votes
2answers
480 views
nhibernate queryover use sql functions
I have been searching the internet and can't find an example on how to use the queryover of nhibernate 3.0
For example I would like to use the string functions on the where clause of the queryover
ex:
...
6
votes
1answer
1k views
Eagerly fetch multiple collection properties (using QueryOver/Linq)?
I found 2 similar questions:
Multiple Fetches in linq to nhibernate
Is this the right way of using ThenFetch() to load multiple collections?
According to this page:
Be careful not to eagerly ...
6
votes
1answer
1k views
NHibernate QueryOver: Get a row count with group by in a subquery
I'm trying to get a count from a query with a group by and just can't figure out how to translate the SQL I want into NHibernate's QueryOver syntax.
This is the SQL:
select count(*) from
...
5
votes
2answers
313 views
How to select and consume a collection of value objects in an NHibernate QueryOver query
I have a simple model, consisting of a document that references one or more article using a reference object (this is because in the domain, we do not own the articles so we can only reference them).
...
5
votes
1answer
2k views
NHibernate QueryOver with MaxResult, Group By and Order By
I'm trying to convert a SQL query to NHibernate QueryOver syntax, but I don't understand how to sort by the count projection.
This is what the SQL Query looks like:
select top 10 v.intVoteUserID, ...
5
votes
1answer
764 views
Help with QueryOver and WhereExists
I have a problem. I have Persons and Cats. Each Person has some Cats (there is a foreign key in Cats that points to the primary key in Persons). Each Cat has an Age. I want to select the Persons that ...
4
votes
2answers
263 views
Fetching Orders and Orderlines Count with subqueries
I am in process to port an old App to Nhibernate.
The old application uses ORACLE packages extensively and I want to get rid of that.
I've started to map few tables and things seem to work very well.
...
4
votes
2answers
211 views
NHibernate QueryOver<> - Aggregate function over SubQuery
How can I write the following SQL statement using QueryOver<> syntax?
SELECT COUNT(*) FROM (
SELECT FirstName,LastName
FROM People
GROUP BY FirstName, LastName
) as sub_t
I ...
4
votes
1answer
517 views
NHibernate QueryOver select entity and aggregates
What I want to do is display a simple grid of data which contains the entity data, and the aggregate data of its children. For example lets use a Order and line items. I want to display the order ...
4
votes
2answers
463 views
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;}
//other properties
}
public class Comment
...
4
votes
2answers
707 views
NHibernate QueryOver distinct
I have this
scenario:
class User
{
Id,
UserName
}
class UserRelationship
{
User GroupUser,
User MemberUser
}
and query
var query = QueryOver.Of<UserRelationship>()
...
4
votes
3answers
521 views
NHibernate projecting child entities into parent properties with Linq or QueryOver
Maybe it's simple but I'm stuck with it and I didn't find any answer on how it could be done. I have a parent entity User with a collection of child entities Operations. These two entities are just ...
4
votes
1answer
815 views
How to convert HQL with Group By to QueryOver?
I have a HQL query:
select max(l.Num) from SomeTable l group by l.Type, l.Iteration
How can I translate/convert it to QueryOver?
Following one:
var grouped = session.QueryOver<SomeTable>()
...
3
votes
1answer
118 views
NHibernate QueryOver on an IUserType
First let me apologize a bit for the length of this post, it's mostly code though so I hope you all bear with me!
I have a scenario in dealing with a legacy database, where I needed to write an ...
3
votes
1answer
95 views
How to do this using NHibernate's QueryOver?
In my database there are these three tables, among others
TRANSLATION has a non-nullable foreign key to UNIT and a nullable foreign key to ASSIGNMENT. UNIT may have more TRANSLATIONS assigned.
I ...
3
votes
1answer
501 views
NHibernate QueryOver with an Or subquery
Ok I'm losing on this one. I have an NHibernate query that looks something like this
var subQuery = QueryOver.Of<Lead>()
.Where(x => x.Client == user.Client)
.And(x ...
3
votes
2answers
707 views
QueryOver with Join and Distinct
I use the follow QueryOver:
var query = searchTermRepository.GetAllOver()
.Where(Restrictions.On<Entities.SearchTerm>(c => c.Text).IsLike(filter.Value, MatchMode.Start))
...
3
votes
2answers
544 views
NHibernate Eager Loading with Queryover API on a complex object graph
I've got a pretty complex object graph that I want to load in one fell
swoop.
Samples have Daylogs which have Daylog Tests which have Daylog
Results
Daylog Tests have Testkeys, Daylog Results have ...
3
votes
1answer
213 views
Not trivial order by in QueryOver query
Ive got my query built with QueryOver api... now the problem is that I need to sort it by some special value that need to be calculeted in flight...
I've got my products table and I need to sort it ...
3
votes
1answer
606 views
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:
CurrentSession.QueryOver<Book>()
.Where(b => b.Author.Name = "SimpleName")
...
3
votes
2answers
321 views
NHibernate entity projection
I'm using NHibernate with QueryOver API to query my domain entities. The problem is getting duplicate results. For example when querying following domain:
I use code like:
var list = ...
3
votes
1answer
323 views
NH QueryOver extensions: How to merge member expression into another expression?
I'm trying to make an extension method for restrictions on a DateTime? property. It's for a search query and I really don't want to duplicate this code for all the possible date fields.
public static ...
3
votes
1answer
354 views
Nhibernate QueryOver Enum Flags
Trying to use QueryOver and a flagged enum query. This works in Nhibernate.Linq:
var results = repo.Query()
.Where(x => (x.Classification & LineItemClassification.Shipping) == ...
3
votes
1answer
335 views
How to query Dynamic properties in NHibernate?
I have this problem.
I have a class like this:
public class WfStep
{
private readonly IDictionary properties = new Hashtable();
public virtual Guid Id { get; private set; }
public ...
3
votes
1answer
2k views
How to QueryOver using correlated subqueries over an aggregate value?
I have the following domain mappings:
Person
------
int PersonId
IList<PersonDetails> Details;
PersonDetails
-------------
Person Owner (mapped by using the FK field, PersonId)
string Name
...
3
votes
1answer
1k views
Complex nHibernate QueryOver expression
I have the following objects in a hierarchy A > B > C > D. Each object is mapped to a table. I'm trying to write the following SQL using QueryOver:
SELECT B
FROM A, B, C, D
WHERE A.ID = ...
3
votes
1answer
337 views
How select referenced entity in nhibernate queryover
I Have a entity with a property referencing other entity (ReferenceEntity in examples).
With HQL i can do this:
select e.ReferenceEntity from Entity e where e.Id = :entityId
NHibernate will give ...
3
votes
1answer
441 views
NHibernate: Delete with QueryOver?
I would like to improve my code when deleting a group of objects in NHibernate (V3).
Currently, I iterate on a retrieved collection and I call delete on each object. This generates n+1 SQL ...
3
votes
1answer
613 views
NHibernate 3.0 QueryOver equivalent of the FetchMany in Nhibernate Linq
The linq provider in Nhibernate 3 gives me the ability to specify eager fetching of multiple levels for collections using FetchMany, ThenFetchMany etc. Is there an equivalent way of doinf this using ...
3
votes
1answer
543 views
Problem with nHibernate Distinct and paging
I have this Repository method which uses QueryOver API
public IList<Message> ListMessagesBy(string text, IList<Tag> tags, int pageIndex, out int count, out int pageSize)
{
...
2
votes
2answers
53 views
NHibernate QueryOver Subquery
I've looked at the similar questions, but can't find a simple explanation. I could have missed it, but I promise I looked. Actually I can't even find the documentation other than a single blog post ...
2
votes
2answers
108 views
NHibernate and JoinAlias throw exception
I have query in HQL which works good:
var x =_session.CreateQuery("SELECT r FROM NHFolder f JOIN f.DocumentComputedRights r WHERE f.Id = " + rightsHolder.Id + " AND r.OrganisationalUnit.Id=" + ...
2
votes
1answer
52 views
Nhibernate : QueryOver equivalent for ICriteria's SetComment?
Is is possible to add a comment to generated by queryover query in Visual Studio's output?
Previously when we were using ICriteria, there was simple SetComment method and we could set the query name ...
2
votes
1answer
175 views
NHIbernate 3.0 - QueryOver, using same projection with distinct and order throws sql error
I have an NHibernate QueryOver which is generating the sql error : ORDER BY items must appear in the select list if SELECT DISTINCT is specified
The problem is caused by a sql projection I am using ...
2
votes
1answer
97 views
Getting started with complex projection in nHibernate
I am looking at nHibernate and Entity Framework as possible ORMs to introduce into a system. I am trying to perform the equivalent to the following SQL using nHibernate:
SELECT
a.Id,
a.Name,
...
2
votes
1answer
121 views
ToRowCountQuery seems to ignore groupings
I'm trying to create a rowcount-query from a regular query, but the resulting SQL seems to lack the GROUP BY resulting in a wrong count. Does anyone know what I'm doing wrong.
First the queries:
...
2
votes
2answers
66 views
Complex (for me) QueryOver
I have an odd relationship.
3 classes: Manager, Group, Vehicle
Group has a many to many to both Manager and Vehicle, but neither Manager nor Vehicle know anything about Group (only a one way ...
2
votes
1answer
55 views
Filtering on a comparison of nullable strings
I am using nHibernate to search for mismatching strings.
The model is this:
PlayerGroup has a field ExpectedPlaylistKey
Player has a field LastReportedPlaylistKey.
One PlayerGroup has many ...
2
votes
1answer
63 views
NHibernate projecting a collection of elements
I want to select all requests that are outstanding for a given manager. A manager can have multiple teams.
I compose the queries applying various restrictions based upon permissions, and alter the ...
2
votes
1answer
124 views
Problem in QueryOver by join and add conditions by Independent if
I have a QueryOver by JoinQueryOver In Nhibernate 3.1
The Person class has a association by Identity class (one-to-one)
Code is a field of Person class and FirstName is a field of Identity class.
...
2
votes
2answers
130 views
Complex QueryOver
Hi I have to translate folowing sql to QueryOver
Will it be possible ? my actual query may more complex. But I have stuck in this stage.
SELECT InnerQuery.USERID,
InnerQuery.TRAFFICZONEID,
...