I\'m in the process of learning QueryOver, but I can\'t for my life figure out how to do simple many to many queries.
I\'ve written the following:
I ended up resolving this after a lot of perseverance.
var result = Session.QueryOver<Product>() .Right.JoinQueryOver<Category>(x => x.Categories) .Where(c => c.Id == categoryId) .List();
What a mission :)