Fluent NHibernate Where Clause - Stack Overflow:



session.QueryOver() .Where(x => x.UserName == "Abcd") .And(u.Password == "123456") .List();


That's the one I needed.  ;^)