vote up 0 vote down star
1

Trying out Linq for NHibernate and first noticed this:

    var list1 = (from ut in session.Linq<UserThings>()
    where ut.User.ID == 10
    select ut).ToList();
    var list2 = session.CreateCriteria(typeof (UserThings), "ut")
    .Add(Expression.Eq("ut.User.ID", 10))
    .List<UserThings>();

This first query will join on the 'User' table, but the second will not. Somehow the second knows that UserID is the foreign key and that it doesn't need to perform the join to filter.

flag

1  
possible duplicate: stackoverflow.com/questions/1211621/… – zvolkov Nov 5 at 19:48

2 Answers

vote up 1 vote down check

The best piece of advice anyone will give you is don't use Linq2NH unless you are writing a very basic, home-made application.

Its very immature, its slow, only supports basic queries, doesn't support caching, eager loading, grouping.... I spent 6 months using it before I abandoned it and made the effort to learn HQL/Criteria.

link|flag
I agree, it's not there yet – Trent Nov 17 at 20:26
vote up 0 vote down

@reach4thelasers, re: cachable and fetch mode, I thought you could do things like the following, no?

var uthings = session.Linq<UserThings>();
uthings.QueryOptions.SetCachable(true);
uthings.QueryOptions.RegisterCustomAction(c => c.SetFetchMode("/UserThing/User", FetchMode.Eager))
return uthings.Where(ut => ut.User == user);

Instead of the not-so-beautiful RegisterCustomAction+SetFetchMode you can also do uthings.Expand("User") but that only works with single property, can't combine two Expands until NHLQ-35 is fixed.

link|flag
I think I would rather use the Criteria Query for now. Sounds like I need to wait. Good catch on the duplicate. – Trent Nov 9 at 20:51
Last time I used it, Linq queries didn't have a SetCachable(bool) method, but it may have come along a bit in the last 6 months. – reach4thelasers Nov 17 at 20:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.