I have an nHibernate issue with the following Linq Query. The session is not recognized. I'm sure I'm just mising a using directive or something similar. Any ideas?
var posts = (from post in session.Query<Post>().FetchMany(x => x.Comments)
select post).ToList();