NHibernate QueryOver is a strongly-typed fluent-like wrapper on top of NHibernate ICritieria, a database-agnostic query API that supports query composition.

learn more… | top users | synonyms

0
votes
1answer
38 views

QueryOver to return full tree hierarchy

Given the following entity: public class Comment { public int Id { get; set; } public IList<Comment> ChildComments { get; set; } } I basically want to load the full tree, ie the ...
0
votes
1answer
38 views

Selecting last reply if present in a thread - NHibernate queryover

I need some help with constructing a queryover query with fluent nhibernate. Assume I have these structure with a thread: T1 - Thread one | | - T5R1 - Thread 5, reply to T1 T2 - Thread two ...
0
votes
1answer
34 views

Working around Duplicate association path bug in Nhibernate with Query Over

I've got a bit of code that tries to access same association path twice and they're really same aliases but because I'm using query objects, I have them in two different places and I am not really ...
0
votes
0answers
18 views

NHibernate JoinQueryOver on linkin Property in the other class

To put it simple I have these 3 classes class Bag { int Id; } class Candy { int Id; } class CandyBag { int Id; Candy candy; Bag bag; } I need to list all Bags that contains certain ...
0
votes
1answer
37 views

QueryOver: Dynamically adding IsLike in Where clause

I've this QueryOver where I select Log records where the Logs Name starts with D or F (using wildcards). conv.InnerTransaction.Session.QueryOver<Log>() .Where(l => l.DateTime > ...
0
votes
0answers
34 views

Convert an oracle query containing inner and left outer join to NHibernate query

How can I convert the following Oracle query to NHibernate query using QuerOver and JoinQueryOver> select rate_det.job_step as jstep, rate.eff_dt as eff_dt, rate.eff_end_dt end_dt, ...
1
vote
1answer
43 views

QueryOver child collection from parent

I have this 2 objects: public class Parent { public virtual int Poid { get; set; } public virtual IEnumerable<Child> Child { get; set; } } public class Child { public virtual int ...
0
votes
1answer
48 views

“OR” restriction in a JoinQueryOver using NHibernate.Criterion?

How do I code an OR restriction between two WhereRestrictionOn? sessao.QueryOver<Usuario>(() => usuarioAlias) .WhereRestrictionOn(usr => usr.Name).IsLike(search, ...
0
votes
1answer
179 views

NHibernate and custom SQL subquery (using temp table)

Is it possible to use custom SQL for a sub query "IN" parameter. Currently, we successfully build the sub query (subQueryEstate) however it's a complicated chunk of SQL which can take time to process ...
0
votes
0answers
36 views

NHibernate: Pros and Cons of using Query<> instead of QueryOver<>

I can use QueryOver<>(namespace NHibernate) or Query<>(namespace NHibernate.Query) to create queries using Nhibernate as ORM. Is there any performance diferences between those two? Is one of ...
0
votes
0answers
47 views

NHibernate: “No persister” when using proxy in QuerOver/Criteria sub-query

Consider this (small part of a) domain: I have products and for each product there is any number of StringPropertyValues which each defines the value of a specific Property I have extracted ...
1
vote
4answers
143 views

Nhibernate QueryOver don't get latest database changes

I am trying get a record updated from database with QueryOver. My code initially creates an entity and saves in database, then the same record is updated on database externally( from other program, ...
0
votes
0answers
19 views

Map 3 Domain Models to ModelView with Nhibernate

I have 3 Entities: Product, Brand and ProductType. I would like to create a ProductViewModel from these 3 entities. I would like to use the QueryOver API that will produce this query: SELECT p.Name, ...
1
vote
1answer
124 views

query over one type in different entities

Here is a small extract of my domain model: public class Chain { public IList<Product> Products { get; set; } } public class Store { public Chain Chain { get; set; } public ...
0
votes
0answers
31 views

Nhibernate Query using joins and groupby

I need to query an entity with list of entity which further have list. The entity structure is Public class Package{ IList< DeliverySite> DeliverySites{get; set;} } Public class DeliverySite ...
0
votes
0answers
27 views

how to join table?

I have rights only for read. How can i join tables without relationship? Detail entity: public class Detail { public virtual long Rscode{get; set;} public virtual long ID{get; set;} ...
0
votes
2answers
55 views

NHibernate: Object hierarchy and performance

I've a database with a Customer table. Each of these customers has a foreign key to an Installation table, which further has an foreign key to an Address table (table renamed for simplicity). In ...
0
votes
1answer
82 views

Nhibernate QueryOver nested properties

Is there an easy way to use QueryOver with nested properties? For example, I try something like this; // SPLAT! session.QueryOver<SuperHero>().Where(Expression.Eq("HomeBase.Name", "Bat Cave"); ...
0
votes
1answer
53 views

Select items with no many-to-many relations in NHibernate?

I have this database structure: Products ProductId Categories CategoryId ProductsInCategories ProductId CategoryId I need to find all the products that are not in a category. ...
1
vote
1answer
202 views

Nhibernate QueryOver. Eager fetch with JoinAlias

How can I do Eager fetch using JoinAlias? I have the following query: QueryOver<Ticket>() .JoinAlias(ticket => ticket.Agent, () => agent) .JoinAlias(ticket => ...
2
votes
1answer
96 views

Is it possible to use NH QueryOver to fetch joined entities in one query?

SQL query is: select B.* from A inner join B on A.b_id = B.id where A.x in (1,2,3) A <-> B relation is many-to-one I need to filter by A but fetch related B. UPDATE: I tried this NH QueryOver ...
0
votes
0answers
86 views

Nhibernate QueryOver. Subquery inside JoinAlias.

I have such SQL query: SELECT * FROM Requests.Ticket AS t INNER JOIN( SELECT ticketId FROM ...
1
vote
1answer
117 views

Nhibernate queries with join (or fetch) return duplicates

I meet unexpected behavior and It's not clear for me. Of course I can use distinct, but what is a reason? I have entities (fluent auto-mapping): public class Ticket { public virtual int Id { ...
0
votes
0answers
43 views

Nhibernate QueryOver. Obtain TimeSpan from a group

I have a query that joins two table: Session.QueryOver<Operation>().JoinAlias(operation => operation.Activities, () => activity) OperationTable | ActivityTable Operation1 ===> ...
6
votes
1answer
293 views

GROUP BY and HAVING clauses in nHibernate QueryOver

I'm trying to write this specific sql query in nHibernate QueryOver language, which I am not very familiar with: SELECT MessageThreadId FROM MessageThreadAccesses WHERE ProfileId IN (arr) GROUP BY ...
2
votes
1answer
51 views

Multiple fetches on an object causes visual studio to crash when compiling

I have an odd problem that has me completely stumped. Unfortunately I have a domain object which has a lot of relationships on it (I can't alter this) essentially when I am building up my query and ...
0
votes
0answers
127 views

Nhibernate QueryOver Child Collection with Subclass

I've got a class CrmContact with a child collection of Interactions. Interactions may be one of WebInteraction or PhoneInteraction. I need a query to find all CrmContacts with Interactions that occur ...
1
vote
1answer
54 views

Why is everything being eagerly loaded?

I'm trying to get to grips with QueryOver, and I was expecting this to return me a Summary item with its ReportRows collection eagerly loaded. Update The first block of code wasn't in my original ...
1
vote
0answers
183 views

C# , NHibernate multiple where conditions in session.QueryOver

I am using multiple where conditions but count of rows returned is not correct if i comment out last 2 where conditions it returns right not able to figure out how to add multiple Where. if ...
0
votes
1answer
99 views

Nhibernate Where Exists queryOver

I have the following objects public class Document { public Guid Id { get; set; } public ISet<Tag> Tags { get; set;} ... } public class Tag { public Guid Id { get; set;} } ...
1
vote
1answer
147 views

Nhibernate: No persister for: System.Collections.Generic.List

Any ideas why I might be getting "No persister for: System.Collections.Generic.List" exception when executing the query below? var subs = new List<Subsection>(); var ...
1
vote
1answer
68 views

SQL Where Expression in QueryOver API

I am using the QueryOverApi, trying to use a SQL Expression in the where clause. I have basically: var query = CurrentSession.QueryOver<Appointment>(() => appt) ...
1
vote
1answer
154 views

Issues with NHibernate QueryOver and Subqueries

I have the following model: public class User { public virtual int Id { get; set; } public virtual string Username { get; set; } public virtual string Password { get; set; } public ...
2
votes
1answer
243 views

Dynamic sorting in NHibernate QueryOver using expressions

Given the following QueryOver: UserProfile userProfileAlias = null; Pegfile pegfileAlias = null; var q = Session.QueryOver(() => pegfileAlias) .JoinAlias(() => pegfileAlias.UserProfile, ...
2
votes
2answers
214 views

Preventing multiple instance after inner join

I have a small problem with multiple instances of the same object after a join to an other table. For testing I create one Store with two Products (ManyToMany-Relation). The following snippet ...
0
votes
1answer
118 views

Why does my QueryOver<T>().RowCount() throw a NonUniqueResultException?

I've mapped an entity to a table and a view by specifying an entity-name for the one that's mapped to the view like so: The mapping to the table: <class name="Foo"> The mapping to the view: ...
0
votes
2answers
150 views

How do I express a query containing a WHERE..IN subquery using NHibernate's QueryOver API?

I have an object model where an Order contains many LineItems, and each LineItem has an associated Product. In the object model, these are one-way associations -- a LineItem does not know anything ...
2
votes
2answers
1k views

To create hibernate composite key using annotations

I am trying to use hibernate(annotation) to insert data to a MySQL database table which doesn't have a primary key defined. However the fact is 2 fields of that table together are unique in the ...
0
votes
1answer
264 views

nHibernate: Conjunctions and Disjunctions using QueryOver

Let's say I have a SQL query I need to render using nHibernate. The SQL query's WHERE clause consists of three OR statements, each of which contains a list of conditions. For example: SELECT * ...
1
vote
1answer
229 views

How to write this linq query with Criteria or QueryOver API

Is it possible to convert this code at below, written by using Query(linq) api to Criteria or QueryOver API in NHibernate? I'm using this to format data into DTO's also it works with just one ...
0
votes
0answers
112 views

fluentnhibernate queryover multiple sub Or filters

Query needs to include in the where clause something like the following: select ... where (id = 1) and (date = getdate()) and ((val2 = 2 and val3 = false and val4 = "test") or (val3 = true) or (val5 ...
1
vote
1answer
130 views

Order by date column in nhibernate is working as order by string

I am trying to sorty data using date column but the column is sorting as string not as date. how to solve this problem? Code: var projection = Projections.SqlFunction("lower", ...
0
votes
0answers
38 views

define SQL IN criterion with QueryOver

I need to define the following SQL query with NH's QueryOver. SELECT * FROM Table1 WHERE Column1 IN (SELECT ID FROM Table2) Is that possible? TIA Ivan
0
votes
1answer
233 views

C# NHibernate dynamically add Where clauses (jqgrid)

Is it possible to add where clauses dynamically to an NHibernate Query? I have a collection of Clauses I need to Loop through and add a Where clause if required - i.e. if the user has entered ...
0
votes
1answer
161 views

NHibernate TOP N Rows Per Group

Here is my domain: public class ForumTheme { public virtual String Name { get;set; } } public class ForumTopic { public virtual IList<ForumTheme> Themes { get;set; } } public class ...
1
vote
3answers
103 views

fetch single property in object from database

I am working on NET MVC 3.0 and Nhibernate 3.0. I want to fetch only one property from database to an object. For instance, suppose I have a class Module. I want to select all the names from module ...
5
votes
2answers
498 views

NHibernate - Union three QueryOvers

Hi StackOverflow users, I ran into this problem I have three QueryOvers and each of them returns a list of candidate ids that I then use to bring those candidates. For this I wrote the following ...
1
vote
1answer
847 views

Join multiple tables with NHibernate and QueryOver

I have this tables: Person -> PersonFavorites, PersonCompany PersonCompany -> Company I have now to do the following select with NHibernate and QueryOver: select * from Person inner join ...
0
votes
1answer
411 views

How do I do a String.IsNullOrEmpty() test in an NHibernate Queryover where clause?

I hit a situation today where a field in our legacy db that should never be empty... was empty. I am using NHibernate 3.2 against this database and the queries that are affected are written in ...
0
votes
0answers
39 views

nhibernate, how to select subtree counts

What i want to achive is generating a short cut search menu like : AdvType1(n) >> City1 (m) >> County11 (l) >> District (k) n, m, l and k are the numbers of the records. I have following class ...

1 2 3 4