A basic QueryOver query is performed against an ISession using the QueryOver<T> method, where T is the type of a mapped entity.
QueryOver
ISession
QueryOver<T>
T
IList<Customer> customers = session.QueryOver<Customer>() .Where(c => c.LastName == "Simpson") .List();