Hi, I moved some working code from one project to a new project and now when i try to do something like:
Code:
IQuery q = this.Session.CreateQuery("from Product");
q.List();
NHibernate registers no errors but sends "select from" to the database... nothing else... its not picking up the object name or properties correctly... but no errors are coming from nhibernate (beyond the sql exception)... anyone have any idea what i did wrong?
I checked the namespaces in the config file and they match the namespace of the object... other than that the mapping file is the same...