Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

48
votes
9answers
20k views

Linq to NHibernate

I have been looking around for some example projects or tutorials on Linq to Nhibernate. Does anyone know of any good ones?
16
votes
3answers
5k views

Best way to delete all rows in a table using NHibernate?

To keep my integration tests independent I remove all old data and insert new test data before each test. Is there a better way of doing this than simply querying for all entities and deleting them ...
15
votes
3answers
692 views

NHibernate with or without Repository

There are several similar questions on this matter, by I still haven't found enough reasons to decide which way to go. The real question is, is it reasonable to abstract the NHibernate using a ...
11
votes
4answers
2k views

Linq to NHibernate : is it mature?

I'm thinking about using Linq to NHibernate in an upcoming project, so I'd like some feedback about it. I found this identical question asked in February, and it seemed that Linq to NHibernate was not ...
10
votes
1answer
256 views

LINQ to Nhibernate duplicates joins

I have a query like this var orderedQueryable = this.participationRequests .Fetch(x => x.CommunityEvent) .Fetch(x => x.CommunityMember) .ThenFetch(x => ...
10
votes
1answer
380 views

NHibernate Linq Query is 3x slower than HQL

I have a simple test that runs a query 5000 times. The linq version of the query takes over 3 times the HQL and the cached Linq version is significantly slower than the cached version of HQL HQL: ...
10
votes
5answers
1k views

strange linq to nhibernate issue, Invalid cast from 'System.Int32'

Calling Get in the following code works fine: public class ContractService : IContractService { private readonly IRepository<Contract> repository; public ...
9
votes
2answers
262 views

NHibernate 3.x deletes child entities when combining LINQ paging, many-to-many, and subselect fetch

Our application has the concept of Stories and the concept of Tags. A story can have many tags applied to it, and a tag can be applied to many stories, making the relationship many-to-many. The two ...
9
votes
1answer
955 views

NHibernate - Where ISession.Query<T>() is located

When I try to compile the following code using System; using System.Collections.Generic; using System.Reflection; using System.Linq; using NHibernate; namespace NewNHTest { class A { } ...
9
votes
4answers
995 views

Does NHibernate LINQ support ToLower() in Where() clauses?

I have an entity and its mapping: public class Test { public virtual int Id { get; set; } public virtual string Name { get; set; } public virtual string Description { get; set; } } ...
9
votes
3answers
4k views

NHibernate.Linq and MultiCriteria

Anybody know of a way to batch NHibernate queries using NHibernate.Linq like you can do with MultiCriteria and ICriteria objects? With MultiCriteria I can create something like this: var crit = ...
8
votes
2answers
956 views

Problem with linq query

I'm trying to use linq to NHibernate (with Fluent NHibernate) but I have problems with linq query. Everytime I try to execute it I get this message : "Method 'get_IsReadOnlyInitialized' in type ...
8
votes
2answers
225 views

NHibernate.Linq - How well does it work?

we're starting a new project using NHibernate, and considering using NHibernate.Linq (The embedded version in 3.0, not the contrib project). I'm aware that this is a relatively recent addition. Has ...
8
votes
1answer
200 views

Statistical query in SQL - is this possible with NHibernate LINQ?

I have an application that uses a few data warehousing principles such as dimensional modeling to do reporting on a fairly simple database. An example (simplified) entity named Call looks like this: ...
8
votes
1answer
271 views

NHibernate: can't successfully eager load

I'm using NH 3.0 and FNH 1.1 recompiled with NH3. I have a user model where I want to always retrieve its profile when loading it. I use the linq provider from NH3 but can't use its Fetch method ...
8
votes
2answers
2k views

NHibernate.Linq LIKE

How can I produce this query using NHibernate.Linq? WHERE this_.Name LIKE @p0; @p0 = 'test' // Notice NO % wild card Note, this is not Linq To Sql or Entity Framework. This is NHibernate. Edit: ...
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
1answer
1k views

Nhibernate Linq In Clause

Is it possible to get Nhibernate linq to generate a query with an "In" clause? e.g. - Where AnID in (x,y,z)?
7
votes
3answers
4k views

Eager load while using Linq in NHibernate 3

I need help with eager loading in with Linq in NHibernate 3 trunk version. I have a many-to-many relationship like this: public class Post { public int Id {get;set;} public IList<Tag> ...
6
votes
1answer
453 views

NHibernate 3, Dynamic-Component, Dictionaries, and LINQ Queries

I've got this entity with a <dynamic-component> entry and a number of properties on it. It's being consumed on the entity class as an IDictionary. The mapping works fine and everything is ...
6
votes
2answers
635 views

NHibernate (3.1.0.4000) NullReferenceException using Query<> and NHibernate Facility

I have a problem with NHibernate, I can't seem to find any solution for. In my project I have a simple entity (Batch), but whenever I try and run the following test, I get an exception. I've triede a ...
6
votes
1answer
362 views

How do you deal with Linq to NHibernate's Fetch exception when selecting aggregates?

I'm using LINQ to NHibernate's IQueryable implementation on a asp.net mvc Grid (telerik specifically), where I know I'll need to fetch something eagerly for this particular grid. So I have query that ...
6
votes
1answer
366 views

NHibernate Linq - Duplicate Records

I am having a problem with duplicate blog post coming back when i run the linq statement below. The issue that a blog post can have the same tag more then once and that's causing the problem. I ...
6
votes
1answer
570 views

Select n+1 problem

Foo has Title. Bar references Foo. I have a collection with Bars. I need a collection with Foo.Title. If i have 10 bars in collection, i'll call db 10 times. bars.Select(x=>x.Foo.Title) At ...
5
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 ...
5
votes
1answer
247 views

NHibernate using wrong table alias

I am trying to filter a collection based on a foreign key. I have two classes which are mapped with public class GroupPriceOverrideMap:ClassMap<GroupPriceOverride> { public ...
5
votes
1answer
201 views

LINQ to NHibernate and let keyword

Is this possible to use let keyword with nhibernate linq? I wrote var posts = from post in postsRepository.GetPosts(name) let commentsCount = (from c in ...
5
votes
2answers
214 views

How do I express this LINQ query using the NHibernate ICriteria API?

My current project is using NHibernate 3.0b1 and the NHibernate.Linq.Query<T>() API. I'm pretty fluent in LINQ, but I have absolutely no experience with HQL or the ICriteria API. One of my ...
5
votes
1answer
431 views

A different object with same identifier was already associated with the session error

Scenario: I have a customer object with lazy loading enabled. I use that throughout the program to call a list of customer for a listbox. It has relationships to the Division_Customer_Rel, ...
5
votes
2answers
65 views

How do you return certain properties from a linq query, rather than complete objects?

I've just downloaded the Linq provider for NHibernate and am just a little excited. But I don't know Linq syntax that well. I can return whole objects from a query like this: var query = from foo in ...
5
votes
1answer
212 views

Linq to NHibernate wrapper issue using where statement

I'am using wrapper to get some data from table User IQueryable<StarGuestWrapper> WhereQuery = session.Linq<User>().Where(u => u.HomeClub.Id == clubId && u.IsActive).Select( ...
5
votes
2answers
1k views

Is Linq to NHibernate in the 2.1 Alpha release?

So the nHibernate 2.1 Alpha came out a few days ago, but the announcement on sourceforge doesn't mention the additional features. In particular, it doesn't mention whether LINQ is included. I know ...
4
votes
3answers
164 views

How do I combine two Expressions?

I am trying to build up an expression that will be applied to an IQueryable collection. I can build an expression like this: [TestClass] public class ExpressionTests { private ...
4
votes
3answers
502 views

Extending LINQ to Nhibernate provider, in combination with Dynamic LINQ problem

I'm using NHibernate 3.1.0 and I'm trying to extend the LINQ provider by using BaseHqlGeneratorForMethod and extending the DefaultLinqToHqlGeneratorsRegistry as explained in Fabio's post. For ...
4
votes
1answer
117 views

Is there a way to prevent boolean performance problems with NHibernate LINQ provider

We were using NHibernate 2.1 and I upgraded our system to 3.0 to test the new LINQ provider. I compared the linq provider, createquery, and queryover. Createquery and queryover did pretty much the ...
4
votes
2answers
253 views

NHibernate / MySQL string concatenation

I have a nhibernate linq query that looks like this: from b in session.Query<Bookmark>() where b.Uri.Equals(uri) || b.Uri.Equals("www." + uri) || string.Concat("www.", b.Uri).Equals(uri) ...
4
votes
3answers
492 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
4answers
200 views

Does it make sense to use an OR-Mapper?

Does it make sense to use an OR-mapper? I am putting this question of there on stack overflow because this is the best place I know of to find smart developers willing to give their assistance and ...
4
votes
3answers
311 views

Good behaviour for eager loading multiple siblings and grandchildren (cousins?) in NHibernate 3.0 Linq

I'm trying to do the following with NHibernate 3.0's LINQ interface. I want to query for an object (using some Where clause), and load some children and grandchildren. Currently I'm doing it like so: ...
4
votes
3answers
2k views

Getting count with NHibernate + Linq + Future

I want to do paging with NHibernate when writing a Linq query. It's easy to do something like this: return session.Query<Payment>() .OrderByDescending(payment => payment.Created) ...
4
votes
1answer
385 views

Linq to NHibernate Distinct() problem

I've got the following code: var data = (from v in this.GetSession().Query<WorkCellLoadGraphData>() where v.WorkCellId == "13" select ...
4
votes
1answer
130 views

Linq2NHibernate - Only Left Joins?

Really quick question.. Does Linq2NHibernate always create a left join to retrieve relationships? Is there a way that I can get an inner one instead? Thank you in advance. Filipe
4
votes
1answer
412 views

NHibernate Linq - how to create a where statement with IS NOT NULL

how can i achieve this query with Nhibernate Linq? var l = session.CreateQuery("from Auswahl a where a.Returnkey is not null").List<Auswahl>(); i tried this but it always returns an empty ...
4
votes
1answer
517 views

Is this the right way of using ThenFetch() to load multiple collections?

I'm trying to load all the collections eagerly, using NHibernate 3 alpha 1. I'm wondering if this the right way of using ThenFetch()? Properties with plural names are collections. The others are just ...
4
votes
1answer
281 views

NHibernate/LINQ - Aggregate query on subcollection

Querying child collections has been a recurring issue in our applications where we use NHibernate (via LINQ). I want to figure out how to do it right. I just tried forever to get this query to work ...
4
votes
0answers
253 views

Nhibernate Linq 3 In Clause

It seems that a In clause is not working properly with Linq 3.0 (trunk) I tried following: var l = session.Query<MyClass>.Where(p => searchGroups.Contains(p.ID)).Select(r=>r); I get an ...
4
votes
0answers
246 views

NHibernate.Linq -> The method CompareTo is not implemented

Here's the problem: in short I use comb.guid identity strategy and I need all the rows made after the saved marker.. Here's dummy code example of what I am trying to get: return session.Linq ...
4
votes
4answers
597 views

Why ordinary laws in evaluting boolean expression does not fit into LINQ?

In such a code: if (insuranceNumberSearch == null ? true : ei.InsuranceNumber.Contains(insuranceNumberSearch.Trim())) doSomething(); where insuranceNumberSearch is null, remaining ...
4
votes
4answers
820 views

Latest Binary builds of FLuentNhibernate + Nhibernate + Linq for NHibernate

do people build there own versions of all this? or is there a place to get all this prebuilt? I got the latest FluentNhibernate which has NHibernate but no Linq.... but I don't really want to setup ...
4
votes
2answers
918 views

Linq to NHibernate: Distinct

I am trying to get the following SQL output using Linq-to-NHibernate: SELECT DISTINCT Name, at.Year FROM MyTable mt INNER JOIN AnotherTable at ON at.Id = mt.AnotherTableId The Name and Year ...

1 2 3 4 5 9