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.
