Hello Guys... I updated the Npgsql driver to the last version (2.0.5) and got error in my NHibernate App... Mappings:
School mapping :
...
References(x => x.City);
...
And City Mapping:
Id(x => x.ID).GeneratedBy.Assigned();
Map(x => x.Name);
References(x => x.Microrregion);
Now, when I tried to load a School, I got a NHibernate.ObjectNotFoundException to object City... But with Npgsql 1.0 all works fine...
Any Idea?
Thanks