Can anyone explain what’s the idea behind nHibernate QueryOver not throwing exception when there is no mapping for used class? Let’s say i have a FakeClass class and no mapping defined, code below executes without exception.
var result = session.QueryOver<FakeClass>()
.Where(x => x.Name == "SomeName").List();
well it’s a reported bug: https://nhibernate.jira.com/browse/NH-2829
hope it won’t end like this : https://nhibernate.jira.com/browse/NH-2183